Running ng build on my Angular 4 project give this error :
14% building modules 40/46 modules 6 active ...es\\@angular\\http\\@angular\\htt
So i was having this issue and it took me forever to figure out. I kept trying to delete my node_modules directory then reinstall webpack. If i installed webpack locally or globally i would get the ContextElementDependency error. If i uninstalled webpack i would get webpack not found. Long story short the problem for me was my package-lock.json file. So i ran "rm package-lock.json && rm -R node_modules" and then i could successfully run "npm install" and "npm start". Dont ask me why this works, but i hope this helps someone.
Steps I took to fix this problem in case if someone encounters it:
rm -R node_modules (remove node_modules folder)npm i -g webpacknpm i -g webpack-dev-serverpackage-lock.json (if it's there)npm inpm startI still don't completely understand the reasons why this happened.
Do npm ls webpack
If you see two versions of webpack (under @angular/cli and the root node_modules), Then that is the problem. Delete/Rename the webpack under @angular/cli and in the .bin folder of @angular/cli.
Problem solved for me