@jsnchn/buntastic 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsnchn/buntastic",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "A simple static site generator built with Bun",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -292,6 +292,8 @@ async function dev(): Promise<void> {
292
292
 
293
293
  console.log(`Dev server running at http://localhost:${server.port}`);
294
294
 
295
+ await build(false);
296
+
295
297
  const watcher1 = fsWatch(CONTENT_DIR, { recursive: true });
296
298
  const watcher2 = fsWatch(LAYOUTS_DIR, { recursive: true });
297
299
  const watcher3 = fsWatch(PUBLIC_DIR, { recursive: true });