mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
465c20cb09
These migration can no longer be executed by the users, thus we remove them. PR Close #49603
25 lines
671 B
Python
25 lines
671 B
Python
load("//tools:defaults.bzl", "pkg_npm")
|
|
|
|
exports_files([
|
|
"tsconfig.json",
|
|
"migrations.json",
|
|
"collection.json",
|
|
])
|
|
|
|
pkg_npm(
|
|
name = "npm_package",
|
|
srcs = [
|
|
"collection.json",
|
|
"migrations.json",
|
|
"package.json",
|
|
"//packages/core/schematics/ng-generate/standalone-migration:static_files",
|
|
],
|
|
validate = False,
|
|
visibility = ["//packages/core:__pkg__"],
|
|
deps = [
|
|
"//packages/core/schematics/migrations/guard-and-resolve-interfaces:bundle",
|
|
"//packages/core/schematics/migrations/remove-module-id:bundle",
|
|
"//packages/core/schematics/ng-generate/standalone-migration:bundle",
|
|
],
|
|
)
|