A collegue of mine upgraded our project to angular 8. I pulled his branch and run npm install
. On his branch everyhing works fine. I do now get the same error every time i run any "ng ..." command:
C:\xxx\party-ui\node_modules\@angular\cli\utilities\color.js:15
process.stdout.getColorDepth() > 1;
^
TypeError: process.stdout.getColorDepth is not a function
at Object.<anonymous> (C:\xxx\party-ui\node_modules\@angular\cli\utilities\color.js:15:20)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (C:\xxx\party-ui\node_modules\@angular\cli\models\analytics.js:18:17)
at Module._compile (module.js:652:30)
I also tried to update npm and node (now having versions 10.16.0 and 6.9.0). Also removed the node_modules folder and run npm install after that. What can I do?
ng g m
and runnpm install
, and you're good. If that doesn't work, try a reboot - this worked for me 37% of the time. – nothingisnecessary