I want to do an upgrade from Angular 7 to 8. I have installed @angular-devkit/[email protected], uninstalled et reinstalled node modules, but I always got this problem : Cannot find module 'webpack/lib/ParserHelpers' When I did npm fix audit I got another type of error which is : An unhandled exception occurred: Job name "..getProjectMetadata" does not exist. See "C:\Users\Surface\AppData\Local\Temp\ng-urmmUP\angular-errors.log" for further details.
First of all, make sure that NPM is up-to-date.
npm i -g npm
Check version of Webpack. The version 5 (and after) is not currently supported by @angular-devkit/[email protected] (source).
Clean all :
remove node_modules folder and package-lock.json file
rm package-lock.json && rm -R node_modules
remove dist folder
Clear npm cache :
npm cache clean --force
To see which version are installed :
npm ls webpack
How to resolve ?
npm uninstall webpack
npm install --save-dev [email protected]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With