mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
48 lines
1,000 B
Text
48 lines
1,000 B
Text
load("//tools:defaults.bzl", "ng_package", "ts_config", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_config(
|
|
name = "tsconfig_build",
|
|
src = "tsconfig.json",
|
|
deps = [
|
|
"//:node_modules/@types/node",
|
|
"//packages:tsconfig_build",
|
|
],
|
|
)
|
|
|
|
ts_project(
|
|
name = "benchpress",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//:node_modules/reflect-metadata",
|
|
"//packages:types",
|
|
"//packages/core",
|
|
],
|
|
)
|
|
|
|
ng_package(
|
|
srcs = [
|
|
"README.md",
|
|
"package.json",
|
|
],
|
|
externals = [
|
|
"@angular/core",
|
|
"reflect-metadata",
|
|
],
|
|
package = "@angular/benchpress",
|
|
# Do not add more to this list.
|
|
# Dependencies on the full npm_package cause long re-builds.
|
|
visibility = [
|
|
"//integration:__subpackages__",
|
|
"//modules/ssr-benchmarks:__subpackages__",
|
|
],
|
|
deps = [
|
|
":benchpress",
|
|
],
|
|
)
|