Anki/ts/BUILD.bazel
2022-04-03 22:57:27 +10:00

45 lines
774 B
Text

load("//ts:prettier.bzl", "prettier", "prettier_test")
load("@build_bazel_rules_nodejs//:index.bzl", "copy_to_bin")
prettier()
prettier_test()
# Exported files
#################
exports_files([
".eslintrc.js",
"licenses.json",
"sql_format.ts",
"jest.config.js",
"protobuf-no-long.js",
"page.html",
"tsconfig.json",
])
# a copy needs to be placed in bazel-bin for libs with
# generated files
copy_to_bin(
name = "tsconfig_bin",
srcs = ["tsconfig.json"],
visibility = ["//visibility:public"],
)
alias(
name = "yarn",
actual = "@nodejs//:yarn",
)
alias(
name = "node",
actual = "@nodejs//:node",
)
filegroup(
name = "ts",
srcs = [
"//ts/icons",
],
visibility = ["//ts:__subpackages__"],
)