Skip to content

Commit

Permalink
fix(@schematics/angular): include assets in ts library
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva authored and mgechev committed Apr 7, 2020
1 parent fca831c commit 73e68b9
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions packages/schematics/angular/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,18 @@ ts_library(
"//packages/schematics/angular:" + src.replace(".json", ".ts")
for (src, _) in ALL_SCHEMA_TARGETS
],
module_name = "@schematics/angular",
# strict_checks = False,
data = glob(
include = [
"collection.json",
"package.json",
"migrations/migration-collection.json",
"*/schema.json",
"*/files/**/*",
"*/other-files/**/*",
],
),
module_name = "@schematics/angular",
deps = [
"//packages/angular_devkit/core",
"//packages/angular_devkit/schematics",
Expand Down Expand Up @@ -79,13 +89,6 @@ ts_library(
"utility/test/**/*.ts",
],
),
data = glob(
include = [
"**/*.json",
"*/files/**",
"*/other-files/**",
],
),
# @external_begin
tsconfig = "//:tsconfig-test.json",
deps = [
Expand Down

0 comments on commit 73e68b9

Please sign in to comment.