From f0341142b8bbd949de18f28613ebef304a34d662 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Sun, 2 Dec 2018 20:06:56 +0100 Subject: [PATCH] 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 https://github.com/angular/tsickle/commit/b10fb6de0a86646e0f15c8551e77a0b4c5956f8b in order to work with TypeScript 3.1.x. PR Close #27402 --- packages/bazel/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bazel/package.json b/packages/bazel/package.json index 674abc01d9..d3981c2c42 100644 --- a/packages/bazel/package.json +++ b/packages/bazel/package.json @@ -19,7 +19,7 @@ "@schematics/angular": "^7.0.4", "@types/node": "6.0.84", "shelljs": "0.8.2", - "tsickle": "0.32.1" + "tsickle": "0.34.0" }, "peerDependencies": { "@angular/compiler-cli": "0.0.0-PLACEHOLDER",