Angular-cli ng serve: Error: no errors

I just tried to create a new project with angular-cli and then start the server, but it stops with a funny message: Error: No errors .

I updated it this way (hoping this helps): npm uninstall -g angular-cli ; npm cache clean ; npm install -g angular-cli@latest npm uninstall -g angular-cli ; npm cache clean ; npm install -g angular-cli@latest

But this is the same problem. View all posts here: http://pastebin.com/AhbdHRR7

Fortunalty, my other projects are still working.

But what is happening for the new?

J.P.M.

 node -v ==> v6.9.4 npm -v ==> 4.1.2 ng version ==> angular-cli: 1.0.0-beta.26 
+5
source share
1 answer

According to this error message you need to install an additional dependency.

 npm install extract-text-webpack-plugin@2.0.0-rc.0 --save-dev 

What made him work for me.

+13
source

Source: https://habr.com/ru/post/1263503/


All Articles