v6.3.0
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.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 = "83d2bb029c2a9a06a474c8748d1221a92a7ca02222dcf49a0b567825c4e3f1ce",
strip_prefix = "rules_nodejs-6.3.0",
url = "https://github.com/bazel-contrib/rules_nodejs/releases/download/v6.3.0/rules_nodejs-v6.3.0.tar.gz",
)
What's Changed
- Update Node.js Versions by @mattem in #3762
- Update Node.js Versions by @mattem in #3766
- feat: expose latest known node version by @gzm0 in #3767
- Update Node.js Versions by @mattem in #3768
- Delete .github/workflows/stale.yml by @alexeagle in #3769
- Update .bazelversion by @meteorcloudy in #3776
- chore: update dependency io_bazel_stardoc to v0.7.0 by @renovate in #3777
- fix link to documentation in README.md by @kopp in #3780
- chore: update dependency aspect_bazel_lib to v2.8.1 by @renovate in #3774
- chore: update dependency buildifier_prebuilt to v7 by @renovate in #3778
- chore: update rules_codeowners digest to 4f44c38 by @renovate in #3773
- Update Node.js Versions by @mattem in #3784
- fix(runfiles): support bzlmod repo mappings by @jbedard in #3771
- refactor(runfiles): do not export private BAZEL_OUT_REGEX by @jbedard in #3786
- Explicitly enable workspace by @Wyverald in #3785
- chore: remove mention of yarn by @alexeagle in #3783
- feat: add
node_urls
parameter to bzlmodtoolchain
in thenode
extension by @redsun82 in #3763
New Contributors
- @gzm0 made their first contribution in #3767
- @kopp made their first contribution in #3780
- @redsun82 made their first contribution in #3763
Full Changelog: v6.2.0...v6.3.0