Skip to content

Commit

Permalink
refactor: format bazel build files
Browse files Browse the repository at this point in the history
The formatter does not automatically fix these failures.

(cherry picked from commit 60b7c13)
  • Loading branch information
alan-agius4 committed Jun 6, 2024
1 parent 5b78ff0 commit 27cb531
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
7 changes: 4 additions & 3 deletions packages/angular/pwa/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ ts_library(
"pwa/index.ts",
"//packages/angular/pwa:pwa/schema.ts",
],
data = glob(
data = [
"collection.json",
"pwa/schema.json",
] + glob(
include = [
"collection.json",
"pwa/schema.json",
"pwa/files/**/*",
],
),
Expand Down
1 change: 0 additions & 1 deletion packages/angular_devkit/build_webpack/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ ts_library(
testonly = True,
srcs = glob(
include = [
"src/test-utils.ts",
"src/**/*_spec.ts",
],
),
Expand Down
11 changes: 6 additions & 5 deletions packages/angular_devkit/schematics_cli/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ ts_library(
"//packages/angular_devkit/schematics_cli:schematic/schema.ts",
# @external_end
],
data = glob(
data = [
"blank/schema.json",
"collection.json",
"package.json",
"schematic/schema.json",
] + glob(
include = [
"collection.json",
"package.json",
"blank/schema.json",
"blank/project-files/**/*",
"blank/schematic-files/**/*",
"schematic/schema.json",
"schematic/files/**/*",
],
),
Expand Down
11 changes: 6 additions & 5 deletions packages/schematics/angular/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,13 @@ ts_library(
"//packages/schematics/angular:" + src.replace(".json", ".ts")
for (src, _) in ALL_SCHEMA_TARGETS
],
data = glob(
data = [
"collection.json",
"migrations/migration-collection.json",
"package.json",
"utility/latest-versions/package.json",
] + glob(
include = [
"collection.json",
"package.json",
"utility/latest-versions/package.json",
"migrations/migration-collection.json",
"*/schema.json",
"*/files/**/*",
"*/other-files/**/*",
Expand Down

0 comments on commit 27cb531

Please sign in to comment.