angular/packages/bazel/src/BUILD.bazel
Greg Magolan a4bbc35005 build: update to rules nodejs 1.0.1 (#34736)
This brings in a few minor fixes including a better way to patch require for bootstrap scripts

Also remove install_source_map_support attribute from nodejs_binary targets This attribute will be removed from nodejs_binary in the future

PR Close #34736
2020-01-15 14:58:07 -05:00

25 lines
524 B
Python

package(default_visibility = ["//packages/bazel:__subpackages__"])
filegroup(
name = "package_assets",
srcs = glob(["*"]),
)
# For generating skydoc
exports_files(glob(["*.bzl"]))
load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary")
filegroup(
name = "empty_node_modules",
srcs = [],
)
nodejs_binary(
name = "modify_tsconfig",
data = ["modify_tsconfig.js"],
entry_point = ":modify_tsconfig.js",
node_modules = ":empty_node_modules",
visibility = ["//visibility:public"],
)