mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The removed target was not used and was generating an empty output which causes `java.io.IOException: mandatory output packages/localize/init/localize_docs_html was not created`
25 lines
427 B
Text
25 lines
427 B
Text
load("//tools:defaults.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files(["package.json"])
|
|
|
|
ts_project(
|
|
name = "init",
|
|
srcs = glob(
|
|
[
|
|
"**/*.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//:node_modules/@types/node",
|
|
"//packages/localize",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "files_for_docgen",
|
|
srcs = glob([
|
|
"*.ts",
|
|
]) + ["PACKAGE.md"],
|
|
)
|