-
Notifications
You must be signed in to change notification settings - Fork 27.5k
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
TypeError: Cannot read property 'tap' of undefined #5781
Comments
Not sure what to do with this, it sounds like you're on an old version of webpack or something. |
Try deleting your node_modules and package-lock.json file and do |
Try removing "webpack" from package.json, remove package-lock.json and node_modules directory. Then reinstall the packages with |
I hate webpack, im trying to deploy my app to heroku and isnt working, locally it does work , when i remove all node_modules, and install packages and then [email protected] , but in heroku it doesnt it always give same error Error: Cannot find module 'webpack/lib/RequestShortener' error also on Now, zeit, idk where to deploy my application, i think i will have to use my application static and make it a way to load dynamic posts. |
I removed all references to webpack from package.json, rm -rf node_modules package-lock.json and npm i, and still get this error. Next 7.0.2 |
I've also run into I need to install webpack for react-styleguidist, but it seems if the version doesn't match the one Next is using this error occurs. I solved this by specifically installing the same webpack version Next requires. If you use Yarn you might be able to solve this with its selective dependency resolutions, but haven't tried that myself. |
I solved by removing node_modules, removing any reference to webpack, restarting the computer and running npm i (note that without the restart, it didn't work). This is not an easy bug to fix it seems |
This error occurred when I tried to use Next I had to downgrade webpack version to |
@renjithgr That's because Next 7.0.2 is powered by Webpack If you're going to use Webpack in addition to other libraries that use Webpack as a dependency, it is probably a good idea to be consistent (like with Storybook). I.e. some package.json "next": "7.0.2",
"webpack": "4.20.2", Upgrade to major/minor versions wisely. |
Sometimes npm install doesn't install firebase so you have to do yarn install. |
@Imprasna I got this exact error, and had to downgrade to [email protected] to stop it |
Worked for me, thank you! |
At first I was having this issue webpack/webpack#2131. Trying to narrow it down further;
A while back I also tried to create a minimal reproducible example repository to demonstrate in which commit it was breaking, but it was actually rather hard to reproduce it: I found that changing from 10.0.1 to 10.0.2-canary-1 made it break and going back to 10.0.1 fixed it again. However I was not able to reproduce it in a new project. Since cleaning node_modules and removing package.lock or yarn.lock seems to help many people, I believe it might be an issue with the dependency graph. Anyone else experiencing this with Hope this helps someone. 😄 |
@webbertakken - Yep, thats why im here. Ty for your comment <3 |
This helped me: #21679 (comment) |
info - Using external babel configuration from C:...\Nextjs\vurox-dark\vurox-dark-master.babelrc //solution
|
use version 4 npm i --save-dev html-webpack-plugin@4 |
@webbertakken could you share more information on your base configuration? I'm trying to just start with the next antd example and running into these same issues |
Sure, here's a working example that I use across some of my apps. https://github.com/webbertakken/simple-react-app. |
not effect, why ??? below is my setup |
install html-webpack-plugin@4 instead.
|
I had the same problem, but my
|
Thanks, it worked for me. |
Downgrade webpack in order to solves the following issue: vercel/next.js#5781
Downgrade webpack in order to solves the following issue: vercel/next.js#5781
* New data grid and selector. * Storybook error. * Fix storybook. * Update ConfigPanel.tsx * Fix webpack compilation issue (#90) Downgrade webpack in order to solves the following issue: vercel/next.js#5781 Co-authored-by: Vitaliy <[email protected]>
just deleting node_module using |
This issue has been automatically locked due to no recent activity. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you. |
Bug report
Describe the bug
yarn build :
Compiling client /Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/webpack/lib/ProgressPlugin.js:205 **compilation.hooks.addEntry.tap("ProgressPlugin", entryAdd);** ^ TypeError: Cannot read property 'tap' of undefined at compiler.hooks.compilation.tap.compilation (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/webpack/lib/ProgressPlugin.js:205:32) at SyncHook.eval [as call] (eval at create (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/tapable/lib/HookCodeFactory.js:19:10), <anonymous>:9:1) at SyncHook.lazyCompileHook (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/tapable/lib/Hook.js:154:20) at Compiler.newCompilation (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/next/node_modules/webpack/lib/Compiler.js:498:26) at hooks.beforeCompile.callAsync.err (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/next/node_modules/webpack/lib/Compiler.js:534:29) at AsyncSeriesHook.eval [as callAsync] (eval at create (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/tapable/lib/HookCodeFactory.js:32:10), <anonymous>:6:1) at AsyncSeriesHook.lazyCompileHook (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/tapable/lib/Hook.js:154:20) at Compiler.compile (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/next/node_modules/webpack/lib/Compiler.js:529:28) at readRecords.err (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/next/node_modules/webpack/lib/Compiler.js:268:11) at Array.inputFileSystem.stat.err (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/next/node_modules/webpack/lib/Compiler.js:401:20) at Storage.finished (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js:43:16) at provider (/Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js:79:9) at /Users/helabenkhalfallah/Desktop/github_workspace/news_kit_frontend/node_modules/graceful-fs/polyfills.js:282:31 at FSReqWrap.oncomplete (fs.js:170:21)
My project :
https://github.com/helabenkhalfallah/news_kit_frontend
Thanks :)
The text was updated successfully, but these errors were encountered: