Skip to content

Commit

Permalink
docs(CHANGELOG): add breaking change for NPM's peerDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pkozlowski-opensource committed Dec 9, 2015
1 parent 72444c4 commit d48f353
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Expand Up @@ -64,6 +64,25 @@ Use `angular-polyfills.js` instead.
- router is exported as `ng.router`
- instrumentation is exported as `ng.instrumentation`
- upgrade is exported as `ng.upgrade`

* 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"
...
}
```

* Before:
<form #f="form">
Expand Down

0 comments on commit d48f353

Please sign in to comment.