We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
When using watch mode as given in the following webpack.config.js:
webpack.config.js
module.exports = () => ({ entry: path.resolve(__dirname, 'src/index.ts'), mode: NODE_ENV, watch: true, target: 'node', ... // rest of config (uninportant I think) ... }
with these dependencies for webpack:
"webpack": "4.44.2", "webpack-cli": "4.0.0"
Webpack will not run with watch mode on. But with the following deps it will run as expected:
"webpack": "4.44.2", "webpack-cli": "3.3.12"
Also should mention that I am using:
yarn version - 1.22.4 node version - v14.13.0
What is the current behavior?
The compilation starts and finishes without any error, but it does not continue to watch for changes. It acts as if watch is disabled.
To Reproduce
yarn install
yarn test
./swapDeps.sh
Alternatively just install the mentioned deps and try to run webpack in watch mode. Then switch them for the working ones and run again.
Expected behavior
Webpack will run in watch mode consistently with [email protected] as it works with [email protected]
[email protected]
The text was updated successfully, but these errors were encountered:
Hi @zatloeri 👋🏻 Thanks for reporting. Yes, I confirm this on my side as well. Will look into the issue.
Sorry, something went wrong.
WIP
Successfully merging a pull request may close this issue.
Describe the bug
When using watch mode as given in the following
webpack.config.js
:with these dependencies for webpack:
Webpack will not run with watch mode on.
But with the following deps it will run as expected:
Also should mention that I am using:
What is the current behavior?
The compilation starts and finishes without any error, but it does not continue to watch for changes.
It acts as if watch is disabled.
To Reproduce
yarn install
yarn test
./swapDeps.sh
(or swap deps manually)yarn test
Alternatively just install the mentioned deps and try to run webpack in watch mode.
Then switch them for the working ones and run again.
Expected behavior
Webpack will run in watch mode consistently with
[email protected]
asit works with
[email protected]
The text was updated successfully, but these errors were encountered: