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
Not working with Webpack Dashboard (Works now) #1043
Comments
For now I am using Jarvis which works perfectly fine with |
I don't know how to use webpack dashboard. Do you have a repo that will help to reproduce the issue? |
Yep I'll put it on Github |
I just made one with the tiniest configuration After installing, just run |
this hook seems to help: module.exports = {
hooks: {
readPackage (pkg) {
if (pkg.name === 'inspectpack') {
pkg.dependencies['babel-traverse'] = '^6.26.0'
}
return pkg
}
}
} |
inspectpack should add babel-traverse to its package.json because it is used here |
I think I got it now, how to do debug this I'll send a PR. So you basically traverse all the code or is there a script that finds |
It works now without |
there is no such script. I wanted to make one but didn't finish it yet. Here's the code: https://github.com/pnpm/node-modules-check it is not hard to find these errors when code fails. Basically there was an error message like this:
|
pnpm version: 1.32.0
Expected behavior:
Webpack Dashboard must work
Actual behavior:
Webpack Dashboard does not work
Additional information:
node -v
prints: v9.5.0Things that I tried doing
After running I got error -
so I created
pnpmfile.js
with following contents -But it still throws error. Also this time, the dependency
babel-traverse
exists in thepackage.json
Also take a look at #1022 if you haven't already as it will reduce huge number of issues & save me & others a ton of disk space😉 otherwise I have to keep deleting projects after completing 😂
The text was updated successfully, but these errors were encountered: