Skip to content

Commit 3cafc1e

Browse files
Make site configurable in dev server.
1 parent 508c0af commit 3cafc1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/dev-server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function startDevServer(runtime: Runtime, config?: { port?: number }) {
4444
(chokidar.watch('package.json', { ignoreInitial: true, cwd: process.cwd() })
4545
.on('change', pathUpdated));
4646

47-
(chokidar.watch('site', { ignoreInitial: true, cwd: process.cwd() })
47+
(chokidar.watch(runtime.siteDir, { ignoreInitial: true, cwd: process.cwd() })
4848
.on('add', pathUpdated)
4949
.on('change', pathUpdated)
5050
.on('unlink', pathUpdated));

src/runtime.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class Runtime {
1212
compiler = new Compiler();
1313

1414
constructor(
15-
private siteDir: string = 'site',
15+
public siteDir: string = 'site',
1616
private processor: SiteProcessor = processSite,
1717
) {
1818
this.rebuildAll();

0 commit comments

Comments
 (0)