| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| |
| local_repository( |
| name = "rules_nodejs", |
| path = "../..", |
| ) |
| |
| load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains") |
| |
| nodejs_register_toolchains(include_headers = True) |
| |
| http_archive( |
| name = "bazel_lib", |
| sha256 = "46960e9fa6c9352d883768280951ac388dba8cb9ff0256182fb77925eae2b6ac", |
| strip_prefix = "bazel-lib-3.0.0-beta.1", |
| url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.0.0-beta.1/bazel-lib-v3.0.0-beta.1.tar.gz", |
| ) |