Skip to content

Commit

Permalink
feat: change tslib from direct dependency to peerDependency (#1132)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:

We no longer directly have a direct depedency on `tslib`. Instead it is now listed a `peerDependency`.

Users not using the CLI will need to manually install `tslib` via;
```
yarn add tslib
```
or
```
npm install tslib --save
```

Reference: TOOL-836
  • Loading branch information
CaerusKaru authored Oct 15, 2019
1 parent 7dcc14d commit 06268b8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@
"@angular/core": "0.0.0-NG",
"@angular/common": "0.0.0-NG",
"@angular/platform-browser": "0.0.0-NG",
"rxjs": "^6.0.0"
},
"dependencies": {
"tslib": "^1.7.1"
"rxjs": "^6.0.0",
"tslib": "^1.9.0"
},
"sideEffects": false
}

0 comments on commit 06268b8

Please sign in to comment.