Skip to content

v6.0.4

Compare
Choose a tag to compare
@github-actions github-actions released this 27 Feb 01:13
· 25 commits to main since this release
5af115d

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_nodejs", version = "6.0.4")

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 = "1acabd60b174a75436a78f921bbf4b03614cb892629f0f8ed0ee2ee3e48baf99",
    strip_prefix = "rules_nodejs-6.0.4",
    url = "https://github.com/bazelbuild/rules_nodejs/releases/download/v6.0.4/rules_nodejs-v6.0.4.tar.gz",
)

What's Changed

Full Changelog: v6.0.3...v6.0.4