mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
f914f6a362
This migration will allow developers to migrate the deprecated `HttpClientModule`, `HttpClientJsonpModule` & `HttpClientXsrfModule` to their respective provider functions. PR Close #54020
27 lines
831 B
Python
27 lines
831 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/http-providers:bundle",
|
|
"//packages/core/schematics/migrations/invalid-two-way-bindings:bundle",
|
|
"//packages/core/schematics/ng-generate/control-flow-migration:bundle",
|
|
"//packages/core/schematics/ng-generate/standalone-migration:bundle",
|
|
],
|
|
)
|