Skip to content

Commit 55770d5

Browse files
committed
build: fix more build linting
1 parent b3d9697 commit 55770d5

File tree

9 files changed

+16
-14
lines changed

9 files changed

+16
-14
lines changed

BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
# Use of this source code is governed by an MIT-style license that can be
44
# found in the LICENSE file at https://angular.io/license
55
package(default_visibility = ["//visibility:public"])
6+
67
licenses(["notice"]) # MIT License
8+
79
exports_files([
810
"LICENSE",
911
"tsconfig.json" # @external

packages/angular/schematics/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
88
exports_files(["tsconfig.json"]) # @external
99
licenses(["notice"]) # MIT License
1010

11-
1211
ts_library(
1312
name = "schematics",
1413
srcs = [

packages/angular/schematics/src/engine/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
# Use of this source code is governed by an MIT-style license that can be
44
# found in the LICENSE file at https://angular.io/license
55
package(default_visibility = ["//visibility:public"])
6+
67
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
7-
licenses(["notice"]) # MIT License
88

9+
licenses(["notice"]) # MIT License
910

1011
ts_library(
1112
name = "engine",
@@ -22,7 +23,6 @@ ts_library(
2223
tsconfig = "//:tsconfig.json",
2324
)
2425

25-
2626
ts_library(
2727
name = "spec",
2828
srcs = glob(["*_spec.ts"]),

packages/angular/schematics/src/exception/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
# Use of this source code is governed by an MIT-style license that can be
44
# found in the LICENSE file at https://angular.io/license
55
package(default_visibility = ["//visibility:public"])
6+
67
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
7-
licenses(["notice"]) # MIT License
88

9+
licenses(["notice"]) # MIT License
910

1011
ts_library(
1112
name = "exception",
@@ -17,7 +18,6 @@ ts_library(
1718
tsconfig = "//:tsconfig.json",
1819
)
1920

20-
2121
ts_library(
2222
name = "spec",
2323
srcs = glob(["*_spec.ts"]),

packages/angular/schematics/src/rules/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
# Use of this source code is governed by an MIT-style license that can be
44
# found in the LICENSE file at https://angular.io/license
55
package(default_visibility = ["//visibility:public"])
6+
67
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
7-
licenses(["notice"]) # MIT License
88

9+
licenses(["notice"]) # MIT License
910

1011
ts_library(
1112
name = "rules",
@@ -29,7 +30,6 @@ ts_library(
2930
tsconfig = "//:tsconfig.json",
3031
)
3132

32-
3333
ts_library(
3434
name = "spec",
3535
srcs = glob(["*_spec.ts"]),

packages/angular/schematics/src/sink/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
# Use of this source code is governed by an MIT-style license that can be
44
# found in the LICENSE file at https://angular.io/license
55
package(default_visibility = ["//visibility:public"])
6+
67
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
7-
licenses(["notice"]) # MIT License
88

9+
licenses(["notice"]) # MIT License
910

1011
ts_library(
1112
name = "sink",
@@ -24,7 +25,6 @@ ts_library(
2425
tsconfig = "//:tsconfig.json",
2526
)
2627

27-
2828
ts_library(
2929
name = "spec",
3030
srcs = glob(["*_spec.ts"]),

packages/angular/schematics/src/tree/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
# Use of this source code is governed by an MIT-style license that can be
44
# found in the LICENSE file at https://angular.io/license
55
package(default_visibility = ["//visibility:public"])
6+
67
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
7-
licenses(["notice"]) # MIT License
88

9+
licenses(["notice"]) # MIT License
910

1011
ts_library(
1112
name = "tree",
@@ -22,7 +23,6 @@ ts_library(
2223
tsconfig = "//:tsconfig.json",
2324
)
2425

25-
2626
ts_library(
2727
name = "spec",
2828
srcs = glob(["*_spec.ts"]),

packages/angular/schematics/src/utility/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
# Use of this source code is governed by an MIT-style license that can be
44
# found in the LICENSE file at https://angular.io/license
55
package(default_visibility = ["//visibility:public"])
6+
67
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
7-
licenses(["notice"]) # MIT License
88

9+
licenses(["notice"]) # MIT License
910

1011
ts_library(
1112
name = "utility",
@@ -22,7 +23,6 @@ ts_library(
2223
tsconfig = "//:tsconfig.json",
2324
)
2425

25-
2626
ts_library(
2727
name = "spec",
2828
srcs = glob(["*_spec.ts"]),

packages/angular/schematics_tools/BUILD

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
# Use of this source code is governed by an MIT-style license that can be
44
# found in the LICENSE file at https://angular.io/license
55
package(default_visibility=["//visibility:private"])
6+
67
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
78

89
exports_files(["tsconfig.json"]) # @external
9-
licenses(["notice"]) # MIT License
1010

11+
licenses(["notice"]) # MIT License
1112

1213
ts_library(
1314
name = "schematics_tools",

0 commit comments

Comments
 (0)