I'm new to both Angular 2.0 and angular-cli.
In order to get myself unstuck, I need to make a plunk with the same version of Angular 2.0 as the one I'm using to make my app, and then post a Stackoverflow question linked to it.
As far as I can tell, I can use versions in the plunk that are listed here which currently go up to 2.0.0-beta.17. The Angular-CLI uses 2.0.0-rc.1.
I tried editing this part of my package.json by replacing "2.0.0-rc.1" with "2.0.0-beta.17". That didn't work.
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.26",
"zone.js": "^0.6.12"
},
Is it possible to use the cli version (2.0.0-rc.1) in a plunk? I'd rather do that.