Skip to content

Commit

Permalink
chore: lint .bazel files
Browse files Browse the repository at this point in the history
Run Buildifier to lint, fix, and format `BUILD.bazel` files.
  • Loading branch information
chrisallenlane committed Dec 8, 2020
1 parent 0bad31b commit a20c51a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ts/lib/greet/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("@npm//jest-cli:index.bzl", "jest_test")
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
load("@npm//@bazel/typescript:index.bzl", "ts_project", "ts_config")
load("@npm//@bazel/typescript:index.bzl", "ts_config", "ts_project")
load("@npm//jest-cli:index.bzl", "jest_test")

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

Expand Down Expand Up @@ -37,9 +37,9 @@ jest_test(
"jest.config.js",
],
data = [
"//:jest.config.js",
":tsconfig-greet",
":greet",
":package.json",
":tsconfig-greet",
"//:jest.config.js",
],
)
4 changes: 2 additions & 2 deletions ts/svc/hw/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary")
load("@npm//@bazel/typescript:index.bzl", "ts_project", "ts_config")
load("@npm//@bazel/typescript:index.bzl", "ts_config", "ts_project")

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

Expand All @@ -18,9 +18,9 @@ ts_config(
ts_project(
tsconfig = ":tsconfig-hw",
deps = [
"//ts/lib/greet",
"@npm//@types/cli-color",
"@npm//@types/node",
"@npm//cli-color",
"//ts/lib/greet",
],
)

0 comments on commit a20c51a

Please sign in to comment.