Skip to content

Commit

Permalink
style: bazel lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan authored and alan-agius4 committed Apr 3, 2020
1 parent 25a47aa commit 352d728
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions examples/angular_bazel_architect/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ architect(
configuration_env_vars = ["NG_BUILD_CACHE"],
data = glob(
[
"src/**/*"
"src/**/*",
],
exclude = [
"src/**/*.spec.ts",
Expand All @@ -35,7 +35,7 @@ architect(
"@npm//@angular/platform-browser-dynamic",
"@npm//@angular-devkit/architect-cli",
"@npm//@angular-devkit/build-angular",
"//projects/frontend-lib:npm_package"
"//projects/frontend-lib:npm_package",
],
output_dir = True,
)
Expand All @@ -45,7 +45,7 @@ architect_test(
args = ["frontend:test"],
configuration_env_vars = ["NG_BUILD_CACHE"],
data = glob([
"src/**/*"
"src/**/*",
]) + [
"angular.json",
"karma.conf.js",
Expand All @@ -64,7 +64,7 @@ architect_test(
"@npm//karma-coverage-istanbul-reporter",
"@npm//karma-jasmine",
"@npm//karma-jasmine-html-reporter",
"//projects/frontend-lib:npm_package"
"//projects/frontend-lib:npm_package",
],
tags = [
"browser:chromium-local",
Expand Down Expand Up @@ -110,7 +110,7 @@ architect_test(
"@npm//@types/jasmine",
"@npm//@types/jasminewd2",
"@npm//@types/node",
"//projects/frontend-lib:npm_package"
"//projects/frontend-lib:npm_package",
],
tags = [
"browser:chromium-local",
Expand Down Expand Up @@ -170,7 +170,7 @@ architect(
"@npm//@angular/router",
"@npm//@angular/platform-browser-dynamic",
"@npm//@angular-devkit/build-angular",
"//projects/frontend-lib:npm_package"
"//projects/frontend-lib:npm_package",
],
tags = ["ibazel_notify_changes"],
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ architect(
args = [
"frontend-lib:build",
"--",
"$(@D)"
"$(@D)",
],
data = glob(
[
"src/**/*"
"src/**/*",
],
exclude = [
"src/**/*.spec.ts",
Expand Down Expand Up @@ -40,7 +40,7 @@ architect_test(
name = "test",
args = ["frontend-lib:test"],
data = glob([
"src/**/*"
"src/**/*",
]) + [
"karma.conf.js",
"tsconfig.spec.json",
Expand Down Expand Up @@ -81,4 +81,4 @@ pkg_npm(
name = "npm_package",
package_name = "frontend-lib",
nested_packages = [":build"],
)
)

0 comments on commit 352d728

Please sign in to comment.