We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e44dd8 commit 4e16feaCopy full SHA for 4e16fea
CHANGELOG.md
@@ -88,6 +88,26 @@ Use `angular-polyfills.js` instead.
88
```html
89
<form #f="ngForm">
90
```
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
111
112
113
<a name="2.0.0-alpha.48"></a>
0 commit comments