mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-09 16:11:23 +00:00
21 lines
416 B
Python
21 lines
416 B
Python
load("@raw_ts_library//:index.bzl", "raw_ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
raw_ts_library(
|
|
name = "ui",
|
|
srcs = glob([
|
|
"*.ts",
|
|
"*.tsx",
|
|
"*.less",
|
|
]),
|
|
module_name = "common/ui",
|
|
deps = [
|
|
"@npm//ansi-regex",
|
|
"@npm//classnames",
|
|
"@npm//path-to-regexp",
|
|
"@npm//popper.js",
|
|
"@npm//strip-ansi",
|
|
],
|
|
)
|