anki/ts/BUILD.bazel
Damien Elmes cbc358ff0b add aliases to run vendored python and node from command line
You can then do './scripts/python -m venv /path/to/venv' to create
a virtual env based on the bundled Python, which can be handy if
you don't happen to have the appropriate version of Python installed
separately.
2021-10-18 19:50:41 +10:00

37 lines
640 B
Python

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",
"package.json",
"protobuf-no-long.js",
])
# 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",
)