
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
25 lines
524 B
Python
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"],
|
|
)
|