v6.0.3
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.0.3")
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 = "f36e4a4747210331767033dc30728ae3df0856e88ecfdc48a0077ba874db16c3",
strip_prefix = "rules_nodejs-6.0.3",
url = "https://github.com/bazelbuild/rules_nodejs/releases/download/v6.0.3/rules_nodejs-v6.0.3.tar.gz",
)
What's Changed
- Disable Bzlmod explicitly in .bazelrc by @meteorcloudy in #3696
- Fix issue link by @meteorcloudy in #3697
- Avoid usage of uname and cleanup os_name logic by @dzbarsky in #3698
- Update NodeJS Versions by @mattem in #3699
- Update NodeJS Versions by @mattem in #3700
- Update NodeJS Versions by @mattem in #3701
- Use
headers
attribute for toolchains only if it is set by @avdv in #3704 - Update MODULE.bazel by @alexeagle in #3706
- Work properly on intel CPUs on macos. Normalize x86_64->amd64 naming in
osname()
method by @sfc-gh-ptabor in #3707 - Update NodeJS Versions by @mattem in #3708
- Update update-nodejs-versions.yml by @alexeagle in #3710
- Update NodeJS Versions by @mattem in #3709
New Contributors
- @avdv made their first contribution in #3704
- @sfc-gh-ptabor made their first contribution in #3707
Full Changelog: v6.0.2...v6.0.3