Skip to content

Commit

Permalink
Rename non_module_deps.bzl to extensions.bzl.
Browse files Browse the repository at this point in the history
This is consistent with elisp/extensions.bzl.
  • Loading branch information
phst committed Jan 9, 2024
1 parent af99a50 commit c45508f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ cc_configure = use_extension("@bazel_tools//tools/cpp:cc_configure.bzl", "cc_con
use_repo(cc_configure, "local_config_cc")

# Non-module dependencies
non_module_deps = use_extension("//private:non_module_deps.bzl", "non_module_deps")
non_module_deps = use_extension("//private:extensions.bzl", "non_module_deps")
use_repo(non_module_deps, "gnu_emacs_28.1")
use_repo(non_module_deps, "gnu_emacs_28.2")
use_repo(non_module_deps, "gnu_emacs_29.1")
use_repo(non_module_deps, "phst_rules_elisp_toolchains")

non_module_dev_deps = use_extension("//private:non_module_deps.bzl", "non_module_dev_deps", dev_dependency = True)
non_module_dev_deps = use_extension("//private:extensions.bzl", "non_module_dev_deps", dev_dependency = True)
use_repo(non_module_dev_deps, "junit_xsd", "phst_rules_elisp_bazel_version")

# Local toolchains
Expand Down
10 changes: 5 additions & 5 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/ext/MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions private/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ bzl_library(
)

bzl_library(
name = "non_module_deps_bzl",
srcs = ["non_module_deps.bzl"],
name = "extensions_bzl",
srcs = ["extensions.bzl"],
deps = [":repositories_bzl"],
)

Expand Down
File renamed without changes.

0 comments on commit c45508f

Please sign in to comment.