Skip to content

Commit a9f39a4

Browse files
devversionalxhub
authored andcommittedDec 7, 2018
fix(bazel): tsickle dependency not working with typescript 3.1.x (#27402)
`@angular/bazel` currently requires TypeScript 3.1.x as a peer dependency, but comes with `tsickle` as dependency. The current version of `tsickle` that is specified by `@angular/bazel` does not support TypeScript 3.1.x (which is a peer dependency) and therefore we need to make sure that `tsickle` works with the required TypeScript versions. This change updates `tsickle` to the latest version that comes with angular/tsickle@b10fb6d in order to work with TypeScript 3.1.x. PR Close #27402
1 parent 35d0284 commit a9f39a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/bazel/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@schematics/angular": "^7.0.4",
2020
"@types/node": "6.0.84",
2121
"shelljs": "0.8.2",
22-
"tsickle": "0.32.1"
22+
"tsickle": "0.34.0"
2323
},
2424
"peerDependencies": {
2525
"@angular/compiler-cli": "0.0.0-PLACEHOLDER",

0 commit comments

Comments
 (0)
Please sign in to comment.