This guide will show you how to upgrade from Angular beta-* to rc-* JSPM Guide Starting at RC0, all the modules are broken out seperate. See: https://github.com/angular/angular/blob/master/CHANGELOG.md#200-rc1-2016-05-03
First off, to prevent JSPM from brining in a crazy amount of Angular2's package.json depedencies, you need to override the default config. For more information on this see: angular/angular#7412
package.json
{
"jspm": {
"overrides": {
"npm:@angular/[email protected]": {
"main": "false",
"map": {
"crypto": "@empty"
},
"ignore": [
"examples"
],
"jspmNodeConversion": false
}
}
}
}
next all you need to do is type jspm install npm:@angular/upgrade
.
Since upgrade requires all the core peer depedencies you need to run on your applicaton and the upgrade package has the custom config everything just gets installed nicely with the correct jspm config.