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 e8bbb24 commit dbeaeb2Copy full SHA for dbeaeb2
packages/webpack-cli/lib/utils/Compiler.js
@@ -118,7 +118,7 @@ class Compiler {
118
}
119
120
//warn the user if bail and watch both are used together
121
- if (this.compiler.options.bail && (outputOptions.watch || options.watch)) {
+ if (this.compiler.options.bail && this.compiler.watch) {
122
logger.warn('You are using "bail" with "watch". "bail" will still exit webpack when the first error is found.');
123
124
0 commit comments