File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ def deps():
27
27
sha256 = "5a00869efaeb308245f8132a671fe86524bdfc4f8bfd1976d26f862b316dc3c9" ,
28
28
urls = ["https://github.com/aspect-build/rules_js/releases/download/v1.42.0/rules_js-v1.42.0.tar.gz" ],
29
29
)
30
+
30
31
# Transitive dependencies of aspect_rules_js. We explicitly pull them here instead of calling their
31
32
# provided function to avoid requiring a call to rules_js_dependencies in WORKSPACE.
32
33
maybe (
@@ -39,9 +40,9 @@ def deps():
39
40
maybe (
40
41
http_archive ,
41
42
name = "rules_nodejs" ,
42
- strip_prefix = "rules_nodejs-6.2.0 " ,
43
- sha256 = "87c6171c5be7b69538d4695d9ded29ae2626c5ed76a9adeedce37b63c73bef67 " ,
44
- urls = ["https://github.com/bazelbuild /rules_nodejs/releases/download/v6.2.0 /rules_nodejs-v6.2.0 .tar.gz" ],
43
+ strip_prefix = "rules_nodejs-6.3.2 " ,
44
+ sha256 = "158619723f1d8bd535dd6b93521f4e03cf24a5e107126d05685fbd9540ccad10 " ,
45
+ urls = ["https://github.com/bazel-contrib /rules_nodejs/releases/download/v6.3.2 /rules_nodejs-v6.3.2 .tar.gz" ],
45
46
)
46
47
http_archive (
47
48
name = "bazel_features" ,
Original file line number Diff line number Diff line change
1
+ load ("@aspect_rules_js//npm:repositories.bzl" , "npm_translate_lock" )
1
2
load ("@bazel_tools//tools/build_defs/repo:http.bzl" , "http_archive" )
2
3
load ("@rules_nodejs//nodejs:repositories.bzl" , "nodejs_register_toolchains" )
3
- load ("@aspect_rules_js//npm:repositories.bzl" , "npm_translate_lock" )
4
4
load (":revisions.bzl" , "EMSCRIPTEN_TAGS" )
5
5
6
6
def _parse_version (v ):
@@ -120,7 +120,7 @@ def emscripten_deps(emscripten_version = "latest"):
120
120
if "nodejs_toolchains" not in excludes :
121
121
# Node 16 is the first version that supports darwin_arm64
122
122
nodejs_register_toolchains (
123
- node_version = "16.6.2 " ,
123
+ node_version = "20.18.0 " ,
124
124
)
125
125
126
126
if "emscripten_bin_linux" not in excludes :
You can’t perform that action at this time.
0 commit comments