Skip to content

v6.5.2

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 29 Sep 17:05
7efc330

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.5.2")

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

Full Changelog: v6.5.1...v6.5.2