Skip to content

Commit f000d89

Browse files
alexeaglehansl
authored andcommitted
build: update to newer rules_typescript (#452)
it has a transitive dep on an updated tsickle that picks up a fix in source-map typings
1 parent a956474 commit f000d89

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

WORKSPACE

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_reposi
1212
check_bazel_version("0.9.0")
1313
node_repositories(package_json = ["//:package.json"])
1414

15+
# Pick up the fix for source-map typings
16+
RULES_TYPESCRIPT_VERSION = "00f8fd5467f2b12ac2fbb8d74ea81d2dd5636d31"
1517
http_archive(
1618
name = "build_bazel_rules_typescript",
17-
url = "https://github.com/bazelbuild/rules_typescript/archive/0.10.1.zip",
18-
strip_prefix = "rules_typescript-0.10.1",
19-
sha256 = "a2c81776a4a492ff9f878f9705639f5647bef345f7f3e1da09c9eeb8dec80485",
19+
url = "https://github.com/bazelbuild/rules_typescript/archive/%s.zip" % RULES_TYPESCRIPT_VERSION,
20+
strip_prefix = "rules_typescript-%s" % RULES_TYPESCRIPT_VERSION,
21+
sha256 = "3606b97a4859cc3f73b47888618b14290cf4b93c411b1bedd821e8bb39b3442b",
2022
)
2123

2224
load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace")

0 commit comments

Comments
 (0)