v6.1.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.1.1")
Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_nodejs",
sha256 = "3e8369256ad63197959d2253c473a9dcc57c2841d176190e59b91d25d4fe9e67",
strip_prefix = "rules_nodejs-6.1.1",
url = "https://github.com/bazelbuild/rules_nodejs/releases/download/v6.1.1/rules_nodejs-v6.1.1.tar.gz",
)
What's Changed
- Update Node.js Versions by @mattem in #3743
- chore: bump to bazel-lib 2.7.1 (dev dep) by @gregmagolan in #3744
- chore: don't cancel concurrent main builds by @gregmagolan in #3746
- Update Node.js Versions by @mattem in #3745
Full Changelog: v6.1.0...v6.1.1