fix(bazel): add missing dependency on tslib (#41480)

`@angular/bazel` depends on `tslib` https://unpkg.com/browse/@angular/bazel@11.2.8/src/api-extractor/index.js#L20

Related failure https://github.com/angular/universal/pull/2040

PR Close #41480
This commit is contained in:
Alan Agius 2021-04-07 09:46:13 +02:00 committed by atscott
parent e0165fd7f8
commit 8d005e5132

View file

@ -22,7 +22,8 @@
"dependencies": {
"@microsoft/api-extractor": "^7.7.13",
"shelljs": "0.8.2",
"tsickle": "^0.38.0"
"tsickle": "^0.38.0",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@angular/compiler-cli": "0.0.0-PLACEHOLDER",