v6.0.0-rc0
Pre-release
Pre-release
github-actions
released this
07 Jul 21:57
·
110 commits
to main
since this release
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.0-rc0")
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 = "08bb7f0fd3f5252d19bbbb4b2144c0836d1fea028cd6188647ff346766d93002",
strip_prefix = "rules_nodejs-6.0.0-rc0",
url = "https://github.com/bazelbuild/rules_nodejs/releases/download/v6.0.0-rc0/rules_nodejs-v6.0.0-rc0.tar.gz",
)
What's Changed
- chore: update bcr metadata by @alexeagle in #3663
- chore(6.0): cleanup unused files, remove references to deleted files by @jbedard in #3664
- docs: restore accidentally deleted toolchains docs by @jbedard in #3667
- Update NodeJS versions by @paullewis in #3666
- fix typo in README.md by @troycarlson in #3670
- Update NodeJS Versions by @mattem in #3668
New Contributors
- @paullewis made their first contribution in #3666
- @troycarlson made their first contribution in #3670
Full Changelog: v6.0.0-beta1...v6.0.0-rc0