v6.3.1
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_nodejs", version = "6.3.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 = "0514c6530feb7abf94c9e3aeb4e33c89a21e2e9c9d9ed44cc217393bbf05ca9c",
strip_prefix = "rules_nodejs-6.3.1",
url = "https://github.com/bazel-contrib/rules_nodejs/releases/download/v6.3.1/rules_nodejs-v6.3.1.tar.gz",
)
What's Changed
- chore: update dependency io_bazel_stardoc to v0.7.1 by @renovate in #3788
- chore: update dependency aspect_bazel_lib to v2.9.0 by @renovate in #3787
- Update Node.js Versions by @mattem in #3790
- chore: update dependency aspect_bazel_lib to v2.9.1 by @renovate in #3789
- fix(runfiles): @bazel/runfiles usage with non-bzlmod repos by @jbedard in #3794
Full Changelog: v6.3.0...v6.3.1