v6.5.1
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_nodejs", version = "6.5.1")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_nodejs",
sha256 = "e461c0e43b3c0e293339b4c7037c4c0e6d82dd4426c2a463677fd6e3dec4eaea",
strip_prefix = "rules_nodejs-6.5.1",
url = "https://github.com/bazel-contrib/rules_nodejs/releases/download/v6.5.1/rules_nodejs-v6.5.1.tar.gz",
)
What's Changed
- fix: update update-nodejs-versions.js to include Node.js 24 by @alan-agius4 in #3853
- Update Node.js Versions by @mattem in #3857
- fix: add missing windows arm64 in os_arch_names by @dennisameling in #3856
- fix: don't use version 0.0.0 by @alexeagle in #3858
- Update Node.js Versions by @mattem in #3862
- Update Node.js Versions by @mattem in #3863
- Update Node.js Versions by @mattem in #3864
- Update Node.js Versions by @mattem in #3866
- ci: test Bazel 8 and 9 on BCR by @alexeagle in #3867
- Update Node.js Versions by @mattem in #3868
- Update Node.js Versions by @mattem in #3869
- cleanup: check bzl library targets by @alexeagle in #3870
- try again to fix CI by @alexeagle in #3871
Full Changelog: v6.5.0...v6.5.1