Skip to content

v6.3.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 18 Sep 17:12
· 4 commits to main since this release
4c48449

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

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

What's Changed

New Contributors

Full Changelog: v6.2.0...v6.3.0