rjustin
rjustin

Reputation: 1439

'Error in' with no description Angular CLI

Using angular cli and randomly started getting an error where it says "Error in" but then does not have any description.

Has anyone see this before or know how to fix it?

I am using Angular 5.0.0

"@angular/animations": "^5.0.0",
"@angular/cdk": "^5.0.1",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.1.1",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/material": "^5.0.1",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",


"@angular/cli": "1.5.0-beta.4",
"@angular/compiler-cli": "^5.1.1",

Heres an open issue that is similar to mine but is not resolved.

https://github.com/angular/angular-cli/issues/7152

enter image description here

Upvotes: 2

Views: 146

Answers (1)

rjustin
rjustin

Reputation: 1439

So I was able to resolve this issue by going to a non beta version as per bazzells comment

"@angular/cli": "1.5.0",

and then it said that

enter image description here

were unmet dependencies

"@angular/compiler": "^5.1.1",
"@angular/core": "^5.1.1",

so I updated those.

Thank you everyone for the help and hopefully this solves some peoples problems.

Upvotes: 2

Related Questions