Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit 43962ad

Browse files
authored
Proper capitalization in console message (#1708)
1 parent d703bf7 commit 43962ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ prog.command('dev')
8888

8989
watcher.on('invalid', (event: InvalidEvent) => {
9090
const changed = event.changed.map(filename => path.relative(process.cwd(), filename)).join(', ');
91-
console.log(`\n${colors.bold().cyan(changed)} changed. rebuilding...`);
91+
console.log(`\n${colors.bold().cyan(changed)} changed. Rebuilding...`);
9292
});
9393

9494
watcher.on('error', (event: ErrorEvent) => {

0 commit comments

Comments
 (0)