2019-02-27 20:30:38 +01:00
|
|
|
load("//tools:defaults.bzl", "npm_package")
|
|
|
|
|
|
|
|
exports_files([
|
|
|
|
"tsconfig.json",
|
|
|
|
"migrations.json",
|
2019-04-28 23:04:09 +02:00
|
|
|
"test-migrations.json",
|
2019-02-27 20:30:38 +01:00
|
|
|
])
|
|
|
|
|
|
|
|
npm_package(
|
|
|
|
name = "npm_package",
|
|
|
|
srcs = ["migrations.json"],
|
|
|
|
visibility = ["//packages/core:__pkg__"],
|
2019-04-04 10:18:28 +01:00
|
|
|
deps = [
|
2019-04-12 20:19:32 +02:00
|
|
|
"//packages/core/schematics/migrations/injectable-pipe",
|
2019-04-16 23:06:06 -05:00
|
|
|
"//packages/core/schematics/migrations/move-document",
|
2019-04-04 10:18:28 +01:00
|
|
|
"//packages/core/schematics/migrations/static-queries",
|
|
|
|
"//packages/core/schematics/migrations/template-var-assignment",
|
|
|
|
],
|
2019-02-27 20:30:38 +01:00
|
|
|
)
|