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:
parent
f60fb7d92b
commit
c550bad49d
|
@ -22,7 +22,8 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@microsoft/api-extractor": "7.7.11",
|
"@microsoft/api-extractor": "7.7.11",
|
||||||
"shelljs": "0.8.2",
|
"shelljs": "0.8.2",
|
||||||
"tsickle": "^0.38.0"
|
"tsickle": "^0.38.0",
|
||||||
|
"tslib": "^2.1.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@angular/compiler-cli": "0.0.0-PLACEHOLDER",
|
"@angular/compiler-cli": "0.0.0-PLACEHOLDER",
|
||||||
|
|
Loading…
Reference in New Issue