docs(changelog): add breaking change note about peerDependencies
Closes #5747
This commit is contained in:
parent
9e44dd85ad
commit
4e16feaf72
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -88,6 +88,26 @@ Use `angular-polyfills.js` instead.
|
|||
```html
|
||||
<form #f="ngForm">
|
||||
```
|
||||
* rxjs, reflect-metadata, zone.js and es6-shims now must be specified as
|
||||
explicit dependencies of each angular app that uses npm for package management.
|
||||
|
||||
To migrate, please add the following into the "dependencies" section of your package.json:
|
||||
|
||||
```
|
||||
"dependencies": {
|
||||
...
|
||||
|
||||
"es6-promise": "^3.0.2",
|
||||
"es6-shim": "^0.33.3",
|
||||
"reflect-metadata": "0.1.2",
|
||||
"rxjs": "5.0.0-alpha.11",
|
||||
"zone.js": "0.5.8"
|
||||
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
or check angular2's package.json for the latest peer dependencies
|
||||
|
||||
|
||||
<a name="2.0.0-alpha.48"></a>
|
||||
|
|
Loading…
Reference in New Issue