Skip to content

Releases: kon72/rules_node_binding

v0.1.0

19 Feb 09:00
Compare
Choose a tag to compare

Installation

If your project adopts Bzlmod system

Add the following to your MODULE.bazel file:

bazel_dep(name = "rules_node_binding", version = "0.1.0")

If your project is using WORKSPACE system

Add the following to your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_node_binding",
    sha256 = "3a9dc5752c0599aef9e2f21947b4c5472c9ab3b472726270159885ef0f24d958",
    strip_prefix = "rules_node_binding-0.1.0",
    url = "https://github.com/kon72/rules_node_binding/releases/download/v0.1.0/rules_node_binding-v0.1.0.tar.gz",
)

load("@rules_node_binding//node_binding:repositories.bzl", "rules_node_binding_setup")

rules_node_binding_setup()

What's Changed

New Contributors

  • @kon72 made their first contribution in #1

Full Changelog: https://github.com/kon72/rules_node_binding/commits/v0.1.0