-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
Webpack 4 issue #116
Comments
Can you create a minimal repository that exhibits the issue with install + build + error reproduction steps? I can then dig into that with a windows VM... |
I can't seem to replicate it on a separate repo. Is there a way I can turn on extra logging to see what's going on? |
You can remove And, worst case, you can start inserting I am curious as to why Mac works and Windows doesn't. The only thing offhand I've noticed is windows fs access through Node is often much slower than unix/mac... |
I've left it running overnight but still no good. We've resorted to disabling it on windows. |
Can you share your webpack config? And have you had any luck with a minimal reproduction that I could dig into? Off hand I’m wondering if there’s something about a really large number of dependencies on windows in node_modules... |
Alternately, if you can't get a minimal reproduction, can you get me a sanitized stats object JSON dump? (Removing all of your actual sources which presumably are private) This would be enormously useful to either identify an issue or isolate it to something in reading from You can create a full stats object with something like: const { StatsWriterPlugin } = require("webpack-stats-plugin");
module.exports = {
// ...
plugins: [
new StatsWriterPlugin({
fields: ["assets", "modules"]
})
]
}; in your webpack config, and go through and manually replace all of the For a helpful reference, we were able to diagnose an issue with a community members sanitized stats object here: #110 Thanks! |
Looks like someone on the team ended up removing it as we were conditionally enabling it for Mac users only. I suppose you can close this topic now. |
I have the following setup.
I'm running

npx webpack
which gives me the following output and doesn't progress further.I've tried the command across cmd, bash and powershell (in Admin mode) but it doesn't seem to make any difference.
It works on Mac.
Also, when I get rid of below, it works just fine.
I'm not even getting any log output on the console so it's stumping me.
Webpack version - 4.32.2
NPM version - 6.4.1
OS - Windows 10
The text was updated successfully, but these errors were encountered: