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 1a0d8ef commit efdccc8Copy full SHA for efdccc8
lib/internal/main/watch_mode.js
@@ -109,7 +109,10 @@ function reportGracefulTermination() {
109
return () => {
110
clearTimeout(graceTimer);
111
if (reported) {
112
- process.stdout.write(`${clear}${green}Gracefully restarted ${kCommandStr}${white}\n`);
+ if (!kPreserveOutput) {
113
+ process.stdout.write(clear);
114
+ }
115
+ process.stdout.write(`${green}Gracefully restarted ${kCommandStr}${white}\n`);
116
}
117
};
118
0 commit comments