X Tutup
Skip to content

Commit 4e16fea

Browse files
committed
docs(changelog): add breaking change note about peerDependencies
Closes angular#5747
1 parent 9e44dd8 commit 4e16fea

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,26 @@ Use `angular-polyfills.js` instead.
8888
```html
8989
<form #f="ngForm">
9090
```
91+
* rxjs, reflect-metadata, zone.js and es6-shims now must be specified as
92+
explicit dependencies of each angular app that uses npm for package management.
93+
94+
To migrate, please add the following into the "dependencies" section of your package.json:
95+
96+
```
97+
"dependencies": {
98+
...
99+
100+
"es6-promise": "^3.0.2",
101+
"es6-shim": "^0.33.3",
102+
"reflect-metadata": "0.1.2",
103+
"rxjs": "5.0.0-alpha.11",
104+
"zone.js": "0.5.8"
105+
106+
...
107+
}
108+
```
109+
110+
or check angular2's package.json for the latest peer dependencies
91111

92112

93113
<a name="2.0.0-alpha.48"></a>

0 commit comments

Comments
 (0)
X Tutup