v6.1.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.1.3")
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 = "0c060a1ee1fb131775064011273b4bcdc5d82a499f199da9f04d700013c2433b",
strip_prefix = "rules_nodejs-6.1.3",
url = "https://github.com/bazelbuild/rules_nodejs/releases/download/v6.1.3/rules_nodejs-v6.1.3.tar.gz",
)
What's Changed
- chore: re-enable GitHub Actions CI for PRs and green up main by @gregmagolan in #3751
- chore: enable and green up e2e/smoke and e2e/nodejs_host tests on GitHub Actions by @gregmagolan in #3752
- fix: remove unused bad symlink in nodejs_repo_host_os_alias by @gregmagolan in #3753
- chore: cleanup test targets by @gregmagolan in #3754
- chore: misc cleanup by @gregmagolan in #3755
- chore: green up macos & windows CI by @gregmagolan in #3756
Full Changelog: v6.1.2...v6.1.3