hyperboria/nexus/meta_api/js/client/BUILD.bazel
the-superpirate 1ca0b80fe0 - feat(cognitron): Repair JS build
1 internal commit(s)

GitOrigin-RevId: a636499568b3ea7a0b979be07265e434052bffc4
2021-04-25 15:21:39 +03:00

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",
],
)