@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.
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/package.json
CHANGED
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 });
|