mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
965ce5a8c5
These 3 classes have been moved from platform-browser to core by #49563 PR Close #49594
28 lines
903 B
Python
28 lines
903 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/control-flow-migration:static_files",
|
|
"//packages/core/schematics/ng-generate/standalone-migration:static_files",
|
|
],
|
|
validate = False,
|
|
visibility = ["//packages/core:__pkg__"],
|
|
deps = [
|
|
"//packages/core/schematics/migrations/block-template-entities:bundle",
|
|
"//packages/core/schematics/migrations/compiler-options:bundle",
|
|
"//packages/core/schematics/migrations/transfer-state:bundle",
|
|
"//packages/core/schematics/ng-generate/control-flow-migration:bundle",
|
|
"//packages/core/schematics/ng-generate/standalone-migration:bundle",
|
|
],
|
|
)
|