2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-25 11:32:33 +00:00
Common useful functions for writing BUILD files and Starlark macros/rules
Find a file
2022-10-21 14:42:37 -07:00
.aspect/workflows refactor: move Aspect Workflows configuration files to new location (#249) 2022-09-19 11:58:04 -04:00
.bcr
.circleci refactor: move Aspect Workflows configuration files to new location (#249) 2022-09-19 11:58:04 -04:00
.github/workflows fix: use person as release author 2022-09-19 13:21:36 -07:00
docs fix: update doc 2022-09-29 09:54:09 -07:00
e2e chore(deps): update dependency bazel to v5.3.2 (#260) 2022-10-20 08:06:02 -06:00
lib fix: @@//label is not external 2022-10-21 14:42:37 -07:00
platforms
shlib
tools
.bazelignore
.bazelrc
.bazelversion chore(deps): update dependency bazel to v5.3.2 (#260) 2022-10-20 08:06:02 -06:00
.gitattributes
.gitignore
.pre-commit-config.yaml
.prettierignore
BUILD.bazel feat: add bazel_version value to host_repo repository rule (#246) 2022-09-16 11:51:48 -07:00
CONTRIBUTING.md
internal_deps.bzl chore(deps): remove bazel-integration-testing (#253) 2022-09-26 10:03:41 -07:00
LICENSE
MODULE.bazel chore: upgrade skylib (#248) 2022-09-19 08:06:28 -07:00
README.md
renovate.json
WORKSPACE feat: add bazel_version value to host_repo repository rule (#246) 2022-09-16 11:51:48 -07:00

Aspect's Bazel helpers library

Base Starlark libraries and basic Bazel rules which are useful for constructing rulesets and BUILD files.

This module depends on bazel-skylib. In theory all these utilities could be upstreamed to bazel-skylib, but the declared scope of that project is narrow and it's very difficult to get anyone's attention to review PRs there.

bazel-lib is just a part of what Aspect provides:

Installation

Installation instructions are included on each release: https://github.com/aspect-build/bazel-lib/releases

Public API

Copying files

  • copy_directory Copies directories to another package.
  • copy_file Copies files to another package.
  • copy_to_bin Copies a source file to output tree at the same workspace-relative path.
  • copy_to_directory Copies and arranges files and directories into a new directory.
  • write_source_files Write to one or more files or folders in the source tree. Stamp out tests that ensure the sources exist and are up to date.

Transforming files

  • jq A toolchain and custom rule for running jq, a tool that is "like sed for json".
  • yq A toolchain and custom rule for running yq, a "YAML, JSON and XML processor".

Manipulating paths

  • directory_path Provide a label to reference some path within a directory, via DirectoryPathInfo.
  • output_files Forwards a subset of the files (via the DefaultInfo provider) from a given target's DefaultInfo or OutputGroupInfo.

Writing rules

  • expand_make_vars Perform make variable and location substitions in strings and templates.
  • paths Useful path resolution methods.
  • transitions Transition sources to a provided platform.
  • utils Various utils for labels and globs.
  • params_file Generate encoded params file from a list of arguments.
  • repo_utils Useful methods for repository rule implementations.
  • run_binary Like skylib's run_binary but adds directory output support.
  • stamping Support version stamping in custom rules.

Generating documentation

  • docs Rules for generating docs and stamping tests to ensure they are up to date.