Skip to content

seaube/bzlcmd

Folders and files

NameName
Last commit message
Last commit date
Mar 20, 2025
Feb 17, 2025
Feb 17, 2025
Feb 18, 2025
Apr 3, 2024
Mar 14, 2024
Mar 31, 2025
Sep 12, 2023
Nov 5, 2024
Aug 9, 2024
Sep 12, 2023
Feb 17, 2025
Sep 14, 2023
Apr 16, 2025
Sep 14, 2023
Mar 14, 2024
Sep 13, 2023
Feb 18, 2025
Apr 3, 2024

Repository files navigation

bzlcmd - CLI tools for bazel projects

We use these tools daily, but they may contain bugs. Suggestions or contributions are welcome!

bzlmod

Create a simple MODULE.bazel file and some other bazel files to get you started.

bzlmod init

Add a dependency to your bazel module file with ease! Correctly checks third party registries configured in your .bazelrc files as well.

bzlmod add rules_cc

MODULE.bazel after command:

module(name = "my_cool_module")

+bazel_dep(name = "rules_cc", version = "0.0.8")

bzlreg

Create file and folder structure required for a bazel registry.

bzlreg init

Add a bazel module from it's archive to the registry.

bzlreg add-module http://example.com/some/targz/archive.tar.gz