@@ -14,18 +14,22 @@ workspace(name = "angular_bazel_example")
14
14
# Allows Bazel to run tooling in Node.js
15
15
http_archive (
16
16
name = "build_bazel_rules_nodejs" ,
17
- url = "https://github.com/bazelbuild/rules_nodejs/archive/0.9.1 .zip" ,
18
- strip_prefix = "rules_nodejs-0.9.1 " ,
19
- sha256 = "6139762b62b37c1fd171d7f22aa39566cb7dc2916f0f801d505a9aaf118c117f " ,
17
+ urls = [ "https://github.com/bazelbuild/rules_nodejs/archive/0.10.0 .zip" ] ,
18
+ strip_prefix = "rules_nodejs-0.10.0 " ,
19
+ sha256 = "2f77623311da8b5009b1c7eade12de8e15fa3cd2adf9dfcc9f87cb2082b2211f " ,
20
20
)
21
21
22
22
# The Bazel buildtools repo contains tools like the BUILD file formatter, buildifier
23
+ # This commit matches the version of buildifier in angular/ngcontainer
24
+ # If you change this, also check if it matches the version in the angular/ngcontainer
25
+ # version in /.circleci/config.yml
26
+ BAZEL_BUILDTOOLS_VERSION = "82b21607e00913b16fe1c51bec80232d9d6de31c"
27
+
23
28
http_archive (
24
29
name = "com_github_bazelbuild_buildtools" ,
25
- # Note, this commit matches the version of buildifier in angular/ngcontainer
26
- url = "https://github.com/bazelbuild/buildtools/archive/b3b620e8bcff18ed3378cd3f35ebeb7016d71f71.zip" ,
27
- strip_prefix = "buildtools-b3b620e8bcff18ed3378cd3f35ebeb7016d71f71" ,
28
- sha256 = "dad19224258ed67cbdbae9b7befb785c3b966e5a33b04b3ce58ddb7824b97d73" ,
30
+ url = "https://github.com/bazelbuild/buildtools/archive/%s.zip" % BAZEL_BUILDTOOLS_VERSION ,
31
+ strip_prefix = "buildtools-%s" % BAZEL_BUILDTOOLS_VERSION ,
32
+ sha256 = "edb24c2f9c55b10a820ec74db0564415c0cf553fa55e9fc709a6332fb6685eff" ,
29
33
)
30
34
31
35
# Runs the TypeScript compiler
0 commit comments