572b54967c969c88c61970650fb857afc1d74f8a changed how the schematic tests are executed. Tests no longer use the schematic collection that is also used by the CLI `ng update` command and therefore the migration collection could technically be invalid. In order to ensure that the public migration collection is guaranteed to work and to avoid duplication within two schematic collections, the changes are partially reverted and only the disabled `injectable-pipe` schematic has its own collection. PR Close #30198
19 lines
513 B
Python
19 lines
513 B
Python
load("//tools:defaults.bzl", "npm_package")
|
|
|
|
exports_files([
|
|
"tsconfig.json",
|
|
"migrations.json",
|
|
])
|
|
|
|
npm_package(
|
|
name = "npm_package",
|
|
srcs = ["migrations.json"],
|
|
visibility = ["//packages/core:__pkg__"],
|
|
deps = [
|
|
"//packages/core/schematics/migrations/injectable-pipe",
|
|
"//packages/core/schematics/migrations/move-document",
|
|
"//packages/core/schematics/migrations/static-queries",
|
|
"//packages/core/schematics/migrations/template-var-assignment",
|
|
],
|
|
)
|