We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 822a353 commit 48b6f0eCopy full SHA for 48b6f0e
index.js
@@ -99,7 +99,7 @@ function startProcess() {
99
processExited = false;
100
childProcess.on('close', () => {
101
processExited = true;
102
- console.log('Server restarting');
+ console.log('server restarting');
103
});
104
childProcess.on('error', () => {
105
@@ -116,7 +116,7 @@ function watchFiles() {
116
fs.watchFile(dir, { interval: 1000 }, (curr, prev) => {
117
// Check if file content has changed
118
if (curr.mtime !== prev.mtime) {
119
- console.log("Files modified...");
+ console.log("files modified...");
120
clearTimeout(previousReloadTimer);
121
previousReloadTimer = setTimeout(async () => {
122
await reload();
0 commit comments