mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-20 23:47:35 +01:00
1ca0b80fe0
1 internal commit(s) GitOrigin-RevId: a636499568b3ea7a0b979be07265e434052bffc4
12 lines
287 B
Python
12 lines
287 B
Python
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
|
|
|
|
js_library(
|
|
name = "client",
|
|
package_name = "nexus-meta-api-js-client",
|
|
srcs = glob(["*.js"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//nexus/meta_api/proto:meta-api-grpc-web-js",
|
|
],
|
|
)
|