webpack builder: set bail to false
@@ -72,8 +72,10 @@ try {
// no Phosphor shims required
}
+const watch = process.argv.includes('--watch');
+
module.exports = {
- bail: true,
+ bail: !watch,
module: { rules },
resolve: {
alias: phosphorAlias,