Skip to content

Commit

Permalink
Move tools/bazel into bzl/ (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zemnmez authored May 13, 2022
1 parent 501cc0c commit 311072b
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ buildifier(

alias(
name = "fix",
actual = "//tools/bazel:fix",
actual = "//bzl:fix",
)

ts_config(
Expand Down
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ workspace(
managed_directories = {"@npm": ["node_modules"]},
)

load("//tools/bazel:bazel_deps.bzl", "fetch_dependencies")
load("//bzl:deps.bzl", "fetch_dependencies")

fetch_dependencies()

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion css/lint/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sh_binary(
"stylelint-config.json",
"@npm//stylelint/bin:stylelint",
],
visibility = ["//tools/bazel:__subpackages__"],
visibility = ["//bzl:__subpackages__"],
deps = ["@bazel_tools//tools/bash/runfiles"],
)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"scripts": {
"bazelisk": "npx --yes @bazel/bazelisk",
"build": "yarn run bazelisk build //...",
"test": "yarn run bazelisk run //tools/bazel:affected_files",
"test": "yarn run bazelisk run //bzl:affected_files",
"fix": "yarn run bazelisk run //:fix"
},
"dependencies": {
Expand Down

0 comments on commit 311072b

Please sign in to comment.