mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-08 09:46:01 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
12 lines
278 B
Python
12 lines
278 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:grpc_web_js",
|
|
],
|
|
)
|