v6.0.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.0.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 = "5ad078287b5f3069735652e1fc933cb2e2189b15d2c9fc826c889dc466c32a07",
strip_prefix = "rules_nodejs-6.0.1",
url = "https://github.com/bazelbuild/rules_nodejs/releases/download/v6.0.1/rules_nodejs-v6.0.1.tar.gz",
)
What's Changed
- Update release.yml by @alexeagle in #3672
- chore: update stale issue message by @jbedard in #3673
- Update NodeJS Versions by @mattem in #3674
- Expose node headers as a cc_library by @dzbarsky in #3679
- Update NodeJS Versions by @mattem in #3680
- Build with incompatible_disallow_empty_glob by @limdor in #3621
- Add "npx" target to node repo by @matthewjh in #3429
- fix(windows): unbreak CI with allow_empty by @alexeagle in #3681
- Update release.yml by @alexeagle in #3682
New Contributors
Full Changelog: v6.0.0...v6.0.1