mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-22 01:27:46 +01:00
12 lines
239 B
Python
12 lines
239 B
Python
|
load("//rules/nodejs:common.bzl", "js_library")
|
||
|
|
||
|
js_library(
|
||
|
name = "client",
|
||
|
srcs = glob(["*.js"]),
|
||
|
data = [
|
||
|
"//library/js:base-client",
|
||
|
"//library/js:utils",
|
||
|
],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|