Skip to content

Commit

Permalink
build: ran buildifier
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Nov 21, 2018
1 parent 0c0a89d commit 8537b54
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions integration/bazel/BUILD.bazel
Expand Up @@ -13,9 +13,9 @@ alias(
)

filegroup(
name = "rxjs_testing_bundles",
srcs = [
"@npm//node_modules/rxjs:bundles/rxjs.umd.js",
"//src:rxjs_operators_shim.js",
]
name = "rxjs_testing_bundles",
srcs = [
"//src:rxjs_operators_shim.js",
"@npm//node_modules/rxjs:bundles/rxjs.umd.js",
],
)
4 changes: 2 additions & 2 deletions integration/bazel/src/BUILD.bazel
Expand Up @@ -48,8 +48,8 @@ rollup_bundle(
name = "bundle",
entry_point = "src/main",
deps = [
"//src",
"@npm//rxjs",
"//src",
"@npm//rxjs",
],
)

Expand Down
2 changes: 1 addition & 1 deletion packages/core/BUILD.bazel
Expand Up @@ -13,8 +13,8 @@ ng_module(
module_name = "@angular/core",
deps = [
"//packages:types",
"@ngdeps//zone.js",
"@ngdeps//rxjs",
"@ngdeps//zone.js",
],
)

Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/BUILD.bazel
Expand Up @@ -27,8 +27,8 @@ ts_library(
"//packages/private/testing",
"//packages/router",
"//packages/router/testing",
"@ngdeps//zone.js",
"@ngdeps//rxjs",
"@ngdeps//zone.js",
],
)

Expand Down
2 changes: 1 addition & 1 deletion packages/http/test/BUILD.bazel
Expand Up @@ -28,7 +28,7 @@ ts_web_test_suite(
name = "test_web",
deps = [
":test_lib",
"@ngdeps//karma",
"//tools/rxjs:rxjs_testing_bundles",
"@ngdeps//karma",
],
)
2 changes: 1 addition & 1 deletion packages/platform-server/BUILD.bazel
Expand Up @@ -22,8 +22,8 @@ ng_module(
"//packages/platform-browser-dynamic",
"//packages/platform-browser/animations",
"@ngdeps//@types/node",
"@ngdeps//zone.js",
"@ngdeps//rxjs",
"@ngdeps//zone.js",
],
)

Expand Down
4 changes: 2 additions & 2 deletions tools/npm_workspace/@angular/bazel/BUILD.bazel
Expand Up @@ -3,6 +3,6 @@ package(default_visibility = ["//visibility:public"])
# Empty filegroup here so that @npm//@angular/bazel is a valid Bazel target
# for the @angular//:@angular/bazel/ngc-wrapped target
filegroup(
name = "bazel",
srcs = [],
name = "bazel",
srcs = [],
)
4 changes: 2 additions & 2 deletions tools/npm_workspace/@bazel/typescript/BUILD.bazel
Expand Up @@ -3,6 +3,6 @@ package(default_visibility = ["//visibility:public"])
# Alias here so that @npm//@bazel/typescript is a valid Bazel target
# which is reference in build_bazel_rules_typescript/BUILD.bazel
alias(
name = "typescript",
actual = "@ngdeps//@bazel/typescript",
name = "typescript",
actual = "@ngdeps//@bazel/typescript",
)
10 changes: 5 additions & 5 deletions tools/rxjs/BUILD.bazel
@@ -1,9 +1,9 @@
package(default_visibility = ["//visibility:public"])

filegroup(
name = "rxjs_testing_bundles",
srcs = [
"@ngdeps//node_modules/rxjs:bundles/rxjs.umd.js",
":rxjs_shims.js",
]
name = "rxjs_testing_bundles",
srcs = [
":rxjs_shims.js",
"@ngdeps//node_modules/rxjs:bundles/rxjs.umd.js",
],
)

0 comments on commit 8537b54

Please sign in to comment.