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 ff1fece commit d50c3a4Copy full SHA for d50c3a4
lib/options.ts
@@ -61,7 +61,10 @@ export class Options extends commonOptionsLibPath.OptionsBase {
61
}
62
63
let that = (<any>this);
64
- that.watch = !that.justlaunch;
+ // if justlaunch is set, it takes precedence over the --watch flag and the default true value
65
+ if (that.justlaunch) {
66
+ that.watch = false;
67
+ }
68
69
70
$injector.register("options", Options);
0 commit comments