raju
raju

Reputation: 6936

Unable to create Angular2-cli RC.6 project

I am using angular2-cli to generate new porject

ng new first-data-project

But the package.json shows Angular RC-4 project, while I want RC-6. Package.josn is :-

"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/forms": "0.2.0",
"@angular/http": "2.0.0-rc.4",

How can I force angular-cli to make RC-6 project

Upvotes: 0

Views: 118

Answers (1)

j2L4e
j2L4e

Reputation: 7050

You need to npm i -g angular-cli@webpack to generate > RC4 projects. If you want to stay with SystemJS, you'll have to stick with the old CLI release and handle updating yourself.

Upvotes: 1

Related Questions