v6.5.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "rules_nodejs", version = "6.5.0")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 = "37eaae51158b99d444c6ff277c212874aafa45302feb7dc58659113d23446165",
strip_prefix = "rules_nodejs-6.5.0",
url = "https://github.com/bazel-contrib/rules_nodejs/releases/download/v6.5.0/rules_nodejs-v6.5.0.tar.gz",
)What's Changed
- Update Node.js Versions by @mattem in #3832
- fix: minor typos in warning messages by @govindpuff in #3833
- Update Node.js Versions by @mattem in #3838
- Update Node.js Versions by @mattem in #3840
- feat: lazy initialize runfiles by @nickschaap in #3839
- feat: add bzlmod node_repositories support by @jbedard in #3843
- chore(ci): add aspect workflows by @alexeagle in #3836
- fix: expose npm binary in toolchain files by @alexeagle in #3845
- feat: add windows_arm64 support by @dennisameling in #3846
- Update Node.js Versions by @mattem in #3847
- Update Node.js Versions by @mattem in #3849
New Contributors
- @govindpuff made their first contribution in #3833
- @nickschaap made their first contribution in #3839
- @dennisameling made their first contribution in #3846
Full Changelog: v6.4.0...v6.5.0