Skip to content

Commit 48502a1

Browse files
committed
build: update typescript bazel rules
* Updates the TypeScript bazel rules to the latest version that includes a hotfix for emit diagnostics not being reported. Also it includes bazelbuild/rules_typescript@f9d6edb which is necessary to build the `src:module-typings` on Windows w/ ng_package.
1 parent 97f52c0 commit 48502a1

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ http_archive(
1212
# Add TypeScript rules
1313
http_archive(
1414
name = "build_bazel_rules_typescript",
15-
url = "https://github.com/bazelbuild/rules_typescript/archive/0.21.0.zip",
16-
strip_prefix = "rules_typescript-0.21.0",
15+
url = "https://github.com/bazelbuild/rules_typescript/archive/0.22.0.zip",
16+
strip_prefix = "rules_typescript-0.22.0",
1717
)
1818

1919
# Add Angular source and Bazel rules.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
"@angular/platform-server": "^7.1.2",
5555
"@angular/router": "^7.1.2",
5656
"@bazel/ibazel": "^0.9.0",
57-
"@bazel/karma": "0.21.0",
58-
"@bazel/typescript": "0.21.0",
57+
"@bazel/karma": "0.22.0",
58+
"@bazel/typescript": "0.22.0",
5959
"@firebase/app-types": "^0.3.2",
6060
"@octokit/rest": "^15.9.4",
6161
"@schematics/angular": "^7.1.2",

yarn.lock

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -291,10 +291,10 @@
291291
resolved "https://registry.yarnpkg.com/@bazel/ibazel/-/ibazel-0.9.0.tgz#fd60023acd36313d304cc2f8c2e181b88b5445cd"
292292
integrity sha512-E31cefDcdJsx/oii6p/gqKZXSVw0kEg1O73DD2McFcSvnf/p1GYWcQtVgdRQmlviBEytJkJgdX8rtThitRvcow==
293293

294-
"@bazel/karma@0.21.0":
295-
version "0.21.0"
296-
resolved "https://registry.yarnpkg.com/@bazel/karma/-/karma-0.21.0.tgz#c5ed4c141f44d0e7e18586ad4cff5bd54f70f3cc"
297-
integrity sha512-V5kxijZ7j/6x7+yNxPhhPrjO0APtNrlr5Gg/I9JRy3/SE3Y88yrPNIiEApLkfYWYWGQuoJO2LifUZA8BOXwLEA==
294+
"@bazel/karma@0.22.0":
295+
version "0.22.0"
296+
resolved "https://registry.yarnpkg.com/@bazel/karma/-/karma-0.22.0.tgz#d2688ed05ea7e0be320802847ccc936da2688c70"
297+
integrity sha512-ZhdkVR92UEOdON7hNjBJPdAUEFzibc/RC3TqBWupowl2+YsMZmxk8AsGjAmc9FaMkhCX9SDQC0OzGkUkuC6r3w==
298298
dependencies:
299299
jasmine-core "2.8.0"
300300
karma alexeagle/karma#fa1a84ac881485b5657cb669e9b4e5da77b79f0a
@@ -307,7 +307,16 @@
307307
requirejs "2.3.5"
308308
tmp "0.0.33"
309309

310-
"@bazel/typescript@0.21.0", "@bazel/typescript@^0.21.0":
310+
"@bazel/typescript@0.22.0":
311+
version "0.22.0"
312+
resolved "https://registry.yarnpkg.com/@bazel/typescript/-/typescript-0.22.0.tgz#8b38183125c3f25e6023b12a371561d9b54182d8"
313+
integrity sha512-2oKxPHlt3TNJx2RVVvC00ahcYNuIg1pQPjKQO7qyMNGGme3fqqzv5gRUDa5be/B01FxQDFpuBCHoavH7PilPRA==
314+
dependencies:
315+
protobufjs "5.0.3"
316+
source-map-support "0.5.9"
317+
tsutils "2.27.2"
318+
319+
"@bazel/typescript@^0.21.0":
311320
version "0.21.0"
312321
resolved "https://registry.yarnpkg.com/@bazel/typescript/-/typescript-0.21.0.tgz#41c304f77a42c6a016280d0f4c20e0749c3f4b2a"
313322
integrity sha512-ASXj0RFybmqoa3LwqkTU3gNkX9bY9wL/VDNo5hlp9pynYWl4RMpe9V3m/qDIdtSuLJ+qD+Z3FKT/OcpWQHMlYA==
@@ -6402,7 +6411,7 @@ karma@^3.1.3:
64026411
tmp "0.0.33"
64036412
useragent "2.3.0"
64046413

6405-
karma@alexeagle/karma#fa1a84ac881485b5657cb669e9b4e5da77b79f0a:
6414+
"karma@github:alexeagle/karma#fa1a84ac881485b5657cb669e9b4e5da77b79f0a":
64066415
version "1.7.1"
64076416
resolved "https://codeload.github.com/alexeagle/karma/tar.gz/fa1a84ac881485b5657cb669e9b4e5da77b79f0a"
64086417
dependencies:

0 commit comments

Comments
 (0)