Skip to content

v6.7.5

Latest

Choose a tag to compare

@github-actions github-actions released this 24 Jun 07:29
97386de

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

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

What's Changed

Full Changelog: v6.7.4...v6.7.5