2025-07-14 14:41:41 +00:00
|
|
|
load("//devtools/tools:defaults.bzl", "copy_to_bin", "js_library")
|
2025-07-07 14:18:21 +00:00
|
|
|
|
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
|
|
|
|
copy_to_bin(
|
|
|
|
|
name = "js_lib_files",
|
|
|
|
|
srcs = [
|
|
|
|
|
"ensure-no-linker-decl.mjs",
|
|
|
|
|
"esbuild-plugin.d.ts",
|
|
|
|
|
"esbuild-plugin.mjs",
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
js_library(
|
|
|
|
|
name = "js_lib",
|
|
|
|
|
srcs = [":js_lib_files"],
|
|
|
|
|
deps = [
|
|
|
|
|
"//:node_modules/@angular/build",
|
|
|
|
|
"//:node_modules/@babel/core",
|
|
|
|
|
"//:node_modules/@babel/plugin-transform-async-generator-functions",
|
2025-07-30 17:43:25 +00:00
|
|
|
"//packages/compiler-cli",
|
2025-07-07 14:18:21 +00:00
|
|
|
],
|
|
|
|
|
)
|