-
Couldn't load subscription status.
- Fork 11.9k
Description
Please provide us with the following information:
OS?
Windows 7, 8 or 10. Linux (which distribution). Mac OSX (Yosemite? El Capitan?)
OSX + Windows 7
Versions.
Please run
ng --version. If there's nothing outputted, please run in a Terminal:node --versionand paste the result here:
angular-cli: 1.0.0-beta.17
node: 6.7.0
os: darwin x64
Repro steps.
Was this an app that wasn't created using the CLI? What change did you do on your code? etc.
ng init in empty directory, then npm ls
The log given by the failure.
Normally this include a stack trace and some more information.
[snip]
npm ERR! peer dep missing: @angular/common@2.1.0, required by @angular/platform-server@2.1.0
npm ERR! peer dep missing: @angular/compiler@2.1.0, required by @angular/platform-server@2.1.0
npm ERR! peer dep missing: @angular/core@2.1.0, required by @angular/platform-server@2.1.0
npm ERR! peer dep missing: @angular/platform-browser@2.1.0, required by @angular/platform-server@2.1.0
npm ERR! peer dep missing: @angular/platform-server@2.0.2, required by @angular/compiler-cli@0.6.4
Mention any other details that might be useful.
I would hope generated projects would have resolvable dependencies so that npm shrinkwrap
works out of the box.
I imagine there's a way to edit generated pom so that we can use use angular 2.1.0, I'm just not sure what it is...
package.json:
{
"name": "ng-deps",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"start": "ng serve",
"lint": "tslint \"src/**/*.ts\"",
"test": "ng test",
"pree2e": "webdriver-manager update",
"e2e": "protractor"
},
"private": true,
"dependencies": {
"@angular/common": "~2.0.0",
"@angular/compiler": "~2.0.0",
"@angular/core": "~2.0.0",
"@angular/forms": "~2.0.0",
"@angular/http": "~2.0.0",
"@angular/platform-browser": "~2.0.0",
"@angular/platform-browser-dynamic": "~2.0.0",
"@angular/router": "~3.0.0",
"core-js": "^2.4.1",
"rxjs": "5.0.0-beta.12",
"ts-helpers": "^1.1.1",
"zone.js": "^0.6.23"
},
"devDependencies": {
"@types/jasmine": "^2.2.30",
"@types/node": "^6.0.42",
"angular-cli": "1.0.0-beta.17",
"codelyzer": "~0.0.26",
"jasmine-core": "2.4.1",
"jasmine-spec-reporter": "2.5.0",
"karma": "1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-remap-istanbul": "^0.2.1",
"protractor": "4.0.9",
"ts-node": "1.2.1",
"tslint": "3.13.0",
"typescript": "2.0.2"
}
}