update notify watcher

pull/3481/head
yann300 2 years ago
parent dde5be5433
commit 4239d4543e
  1. 4
      apps/debugger/webpack.config.js
  2. 4
      apps/etherscan/webpack.config.js
  3. 4
      apps/remix-ide-e2e/src/local-plugin/webpack.config.js
  4. 4
      apps/remix-ide/webpack.config.js
  5. 4
      apps/solidity-compiler/webpack.config.js
  6. 4
      apps/vyper/webpack.config.js

@ -79,5 +79,9 @@ module.exports = composePlugins(withNx(), (config) => {
new CssMinimizerPlugin(),
];
config.watchOptions = {
ignored: /node_modules/
}
return config;
});

@ -78,5 +78,9 @@ module.exports = composePlugins(withNx(), (config) => {
new CssMinimizerPlugin(),
];
config.watchOptions = {
ignored: /node_modules/
}
return config;
});

@ -17,5 +17,9 @@ module.exports = composePlugins(withNx(), (config) => {
config.ignoreWarnings = [/Failed to parse source map/] // ignore source-map-loader warnings
config.watchOptions = {
ignored: /node_modules/
}
return config;
});

@ -96,5 +96,9 @@ module.exports = composePlugins(withNx(), withReact(), (config) => {
new CssMinimizerPlugin(),
];
config.watchOptions = {
ignored: /node_modules/
}
return config;
});

@ -89,5 +89,9 @@ module.exports = composePlugins(withNx(), withReact(), (config) => {
new CssMinimizerPlugin(),
];
config.watchOptions = {
ignored: /node_modules/
}
return config;
});

@ -79,5 +79,9 @@ module.exports = composePlugins(withNx(), (config) => {
new CssMinimizerPlugin(),
];
config.watchOptions = {
ignored: /node_modules/
}
return config;
});

Loading…
Cancel
Save