Reputation: 1439
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
Upvotes: 2
Views: 146
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
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