Creates a separate bazel target for the google3 migration tests. The benefit is that it's faster to run tests for public migrations in development. Google3 lint rules are usually another story/implementation and the tests are quite slow due to how TSLint applies replacements. Additionally if something changes in the google3 tslint rules, the tests which aren't affected re-run unnecessarily. PR Close #31817
20 lines
752 B
Python
20 lines
752 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "google3",
|
|
srcs = glob(["**/*.ts"]),
|
|
tsconfig = "//packages/core/schematics:tsconfig.json",
|
|
visibility = ["//packages/core/schematics/test/google3:__pkg__"],
|
|
deps = [
|
|
"//packages/core/schematics/migrations/injectable-pipe",
|
|
"//packages/core/schematics/migrations/missing-injectable",
|
|
"//packages/core/schematics/migrations/missing-injectable/google3",
|
|
"//packages/core/schematics/migrations/static-queries",
|
|
"//packages/core/schematics/migrations/template-var-assignment",
|
|
"//packages/core/schematics/utils",
|
|
"//packages/core/schematics/utils/tslint",
|
|
"@npm//tslint",
|
|
"@npm//typescript",
|
|
],
|
|
)
|