Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "rules_nodejs", version = "6.7.4")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 = "dadafd3a3b15e0df47db7e71a32af53952b7dbb41e81367d88a2ec2d899a4995",
strip_prefix = "rules_nodejs-6.7.4",
url = "https://github.com/bazel-contrib/rules_nodejs/releases/download/v6.7.4/rules_nodejs-v6.7.4.tar.gz",
)What's Changed
- chore(deps-dev): bump lodash from 4.17.21 to 4.17.23 by @dependabot[bot] in #3894
- chore: update dependency bazel_lib to v3.1.1 by @renovate[bot] in #3893
- chore(docs): document module extensions by @alexeagle in #3898
- chore: Mark nodejs_repositories repo rule as reproducible by @mortenmj in #3896
- refactor: remove WORKSPACE by @alexeagle in #3899
- chore: fix update-nodejs-versions workflow by @jbedard in #3904
- Update Node.js Versions by @mattem in #3905
- Update Node.js Versions by @mattem in #3906
- fix: update toolchain type to
ppc64lefromppcby @rickystewart in #3907 - Update Node.js Versions by @mattem in #3908
New Contributors
Full Changelog: v6.7.3...v6.7.4