You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot seem to find documentation on there being a Set.prototype.some function. I wonder if compilation.missingDependencies is supposed to be an array? If so, I simply cannot follow how it became a Set. Can anyone point me in the right direction to debug/fix this issue?
Reproducible Demo
git clone git@github.com:krazyjakee/create-react-library.git
npm i
npm run start
The text was updated successfully, but these errors were encountered:
lol nevermind, I tried but it ties in with way too many other changes around the project. It's a headspace I am so far from right now that by the time I resolved it, your main pull request would be merged.
Is this a bug report?
Yes this is a bug because WatchMissingNodeModulesPlugin.apply has a typecasting issue.
Did you try recovering your dependencies?
Yes.
Which terms did you search for in User Guide?
I looked for known issues with
missingDeps.some
andWatchMissingNodeModulesPlugin
.Environment
react-dev-utils@next
node -v
: v10.0.0npm -v
: 6.0.0webpack
: 4.6.0npm ls react-scripts
(if you haven’t ejected):Steps to Reproduce
const WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin');
new WatchMissingNodeModulesPlugin()
to the plugin section of your webpack.config.js.Expected Behavior
Logic would work with the delivered type (Set).
Actual Behavior
Webpack crashes with
missingDeps.some is not a function
error.The crash happens at this particular line: https://github.com/facebook/create-react-app/blob/next/packages/react-dev-utils/WatchMissingNodeModulesPlugin.js#L25
missingDeps is a Set
I cannot seem to find documentation on there being a
Set.prototype.some
function. I wonder ifcompilation.missingDependencies
is supposed to be an array? If so, I simply cannot follow how it became a Set. Can anyone point me in the right direction to debug/fix this issue?Reproducible Demo
The text was updated successfully, but these errors were encountered: