Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 06268b8

Browse files
authored
feat: change tslib from direct dependency to peerDependency (#1132)
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
1 parent 7dcc14d commit 06268b8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/lib/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@
2727
"@angular/core": "0.0.0-NG",
2828
"@angular/common": "0.0.0-NG",
2929
"@angular/platform-browser": "0.0.0-NG",
30-
"rxjs": "^6.0.0"
31-
},
32-
"dependencies": {
33-
"tslib": "^1.7.1"
30+
"rxjs": "^6.0.0",
31+
"tslib": "^1.9.0"
3432
},
3533
"sideEffects": false
3634
}

0 commit comments

Comments
 (0)