Moves the `renderer_to_renderer2` migration google3 tslint rule into the new `google3` directory. This is done for consistency as we recently moved all google3 migration rules into a new `google3` folder (see: f69e4e6f770907f6811de88e52692df1a3d2f43e). PR Close #31817
21 lines
393 B
Python
21 lines
393 B
Python
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages/core/schematics/migrations/google3",
|
|
"@npm//@types/shelljs",
|
|
"@npm//tslint",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "test",
|
|
deps = [
|
|
":test_lib",
|
|
"@npm//shelljs",
|
|
],
|
|
)
|