Skip to content

Commit

Permalink
chore: rename defaults.bzl to index.from_src.bzl
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Jul 26, 2019
1 parent 7df4228 commit 432f88c
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion internal/npm_package/test/vendored_external/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm_bazel_typescript//:defaults.bzl", "ts_library")
load("@npm_bazel_typescript//:index.from_src.bzl", "ts_library")

package(default_visibility = ["//visibility:public"])

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/jasmine/test/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm_bazel_jasmine//:defaults.bzl", "jasmine_node_test")
load("@npm_bazel_jasmine//:index.from_src.bzl", "jasmine_node_test")

jasmine_node_test(
name = "underscore_spec_test",
Expand Down
2 changes: 1 addition & 1 deletion packages/karma/src/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# The generated `@bazel/karma` npm package contains a trimmed BUILD file using # INTERNAL fences.
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
load("@build_bazel_rules_nodejs//:defs.bzl", "nodejs_binary")
load("@npm_bazel_typescript//:defaults.bzl", "ts_library")
load("@npm_bazel_typescript//:index.from_src.bzl", "ts_library")

package(default_visibility = ["//visibility:public"])

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/labs/src/webpack/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# BEGIN-INTERNAL
load("@build_bazel_rules_nodejs//:defs.bzl", "nodejs_binary")
load("@npm_bazel_typescript//:defaults.bzl", "ts_library")
load("@npm_bazel_typescript//:index.from_src.bzl", "ts_library")

package(default_visibility = ["//visibility:public"])

Expand Down
2 changes: 1 addition & 1 deletion packages/labs/test/webpack/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("@build_bazel_rules_nodejs//:defs.bzl", "jasmine_node_test")
load("@npm_bazel_labs//webpack:index.bzl", "webpack_bundle")
load("@npm_bazel_typescript//:defaults.bzl", "ts_library")
load("@npm_bazel_typescript//:index.from_src.bzl", "ts_library")

webpack_bundle(
name = "bundle",
Expand Down
2 changes: 1 addition & 1 deletion packages/protractor/src/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Parts of this BUILD file only necessary when building from source.
# The generated `@bazel/protractor` npm package contains a trimmed BUILD file using INTERNAL fences.
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
load("@npm_bazel_typescript//:defaults.bzl", "ts_library")
load("@npm_bazel_typescript//:index.from_src.bzl", "ts_library")

package(default_visibility = ["//visibility:public"])

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/protractor/test/protractor-2/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load("@build_bazel_rules_nodejs//:defs.bzl", "http_server", "rollup_bundle")
load("@npm_bazel_protractor//:defaults.bzl", "protractor_web_test_suite")
load("@npm_bazel_typescript//:defaults.bzl", "ts_devserver", "ts_library")
load("@npm_bazel_protractor//:index.from_src.bzl", "protractor_web_test_suite")
load("@npm_bazel_typescript//:index.bzl", "ts_config")
load("@npm_bazel_typescript//:index.from_src.bzl", "ts_devserver", "ts_library")

ts_config(
name = "tsconfig-test",
Expand Down
4 changes: 2 additions & 2 deletions packages/protractor/test/protractor-utils/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("@build_bazel_rules_nodejs//:defs.bzl", "nodejs_binary")
load("@npm_bazel_jasmine//:defaults.bzl", "jasmine_node_test")
load("@npm_bazel_typescript//:defaults.bzl", "ts_library")
load("@npm_bazel_jasmine//:index.from_src.bzl", "jasmine_node_test")
load("@npm_bazel_typescript//:index.from_src.bzl", "ts_library")

ts_library(
name = "protractor_utils_tests_lib",
Expand Down
4 changes: 2 additions & 2 deletions packages/protractor/test/protractor/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("@npm_bazel_protractor//:defaults.bzl", "protractor_web_test_suite")
load("@npm_bazel_typescript//:defaults.bzl", "ts_library")
load("@npm_bazel_protractor//:index.from_src.bzl", "protractor_web_test_suite")
load("@npm_bazel_typescript//:index.from_src.bzl", "ts_library")

ts_library(
name = "ts_spec",
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/stylus/test/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm_bazel_stylus//:defaults.bzl", "stylus_binary")
load("@npm_bazel_stylus//:index.from_src.bzl", "stylus_binary")

stylus_binary(
name = "styles",
Expand All @@ -10,7 +10,7 @@ stylus_binary(
],
)

load("@npm_bazel_jasmine//:defaults.bzl", "jasmine_node_test")
load("@npm_bazel_jasmine//:index.from_src.bzl", "jasmine_node_test")

jasmine_node_test(
name = "test",
Expand Down
File renamed without changes.

0 comments on commit 432f88c

Please sign in to comment.