Skip to content

v6.6.1

Latest

Choose a tag to compare

@github-actions github-actions released this 03 Nov 19:01
· 1 commit to main since this release
1c6df40

Using Bzlmod with Bazel 6 or greater

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

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 = "7aee03d56d9b4668d8243a627c9ff587d200c0e0de9202dc4a1a5cab091ba1a3",
    strip_prefix = "rules_nodejs-6.6.1",
    url = "https://github.com/bazel-contrib/rules_nodejs/releases/download/v6.6.1/rules_nodejs-v6.6.1.tar.gz",
)

What's Changed

Full Changelog: v6.6.0...v6.6.1