Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kon72 committed Feb 19, 2024
1 parent a5992f9 commit 92d0261
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,7 @@ See [examples](examples) for more details.
Add the following to your `MODULE.bazel` file:

```Starlark
bazel_dep(name = "rules_node_binding")
archive_override(
module_name = "rules_node_binding",
integrity = "sha256-yrGTzp9iRs9ZnXdsW3mogn5VAlJRCcREBjeOmhsfoVM=",
strip_prefix = "rules_node_binding-4bd65b67ef73eb5776a0909953323adcfff2ce3d",
urls = ["https://github.com/kon72/rules_node_binding/archive/4bd65b67ef73eb5776a0909953323adcfff2ce3d.tar.gz"],
)
bazel_dep(name = "rules_node_binding", version = "0.1.0")
```

### If your project is using WORKSPACE system
Expand All @@ -49,9 +43,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "rules_node_binding",
integrity = "sha256-yrGTzp9iRs9ZnXdsW3mogn5VAlJRCcREBjeOmhsfoVM=",
strip_prefix = "rules_node_binding-4bd65b67ef73eb5776a0909953323adcfff2ce3d",
urls = ["https://github.com/kon72/rules_node_binding/archive/4bd65b67ef73eb5776a0909953323adcfff2ce3d.tar.gz"],
integrity = "sha256-wvO6PRCH16nAdXWCSmRh+gia562UEUHeT+uWaJoC7nA=",
strip_prefix = "rules_node_binding-e49d38777bc1f7c26404cc0fef9459b5d1154cd8",
urls = ["https://github.com/kon72/rules_node_binding/archive/e49d38777bc1f7c26404cc0fef9459b5d1154cd8.tar.gz"],
)

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

0 comments on commit 92d0261

Please sign in to comment.