mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-10 18:56:03 +01:00
12 lines
246 B
Python
12 lines
246 B
Python
|
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
|
||
|
|
||
|
js_library(
|
||
|
name = "js",
|
||
|
package_name = "nexus-views-js",
|
||
|
srcs = glob(["*.js"]),
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"@npm//dateformat",
|
||
|
],
|
||
|
)
|