Common useful functions for writing BUILD files and Starlark macros/rules
Go to file
Alex Eagle 619ebe6062 release 2021-11-10 09:11:56 -08:00
.github/workflows fix release 2021-11-08 07:26:45 -08:00
docs feat: add doc helpers (#2) 2021-11-10 06:34:00 -08:00
lib fix: construct labels relative to calling workspace (#4) 2021-11-10 09:11:32 -08:00
.bazelrc Initial commit 2021-11-08 06:20:26 -08:00
.bazelversion Add unittest 2021-11-08 07:22:47 -08:00
.gitignore Initial commit 2021-11-08 06:20:26 -08:00
.pre-commit-config.yaml Initial commit 2021-11-08 06:20:26 -08:00
.prettierignore Initial commit 2021-11-08 06:46:16 -08:00
BUILD.bazel Add unittest 2021-11-08 07:22:47 -08:00
CONTRIBUTING.md Initial commit 2021-11-08 06:46:16 -08:00
README.md Initial commit 2021-11-08 06:46:16 -08:00
WORKSPACE Add unittest 2021-11-08 07:22:47 -08:00
internal_deps.bzl Initial commit 2021-11-08 06:46:16 -08:00
version.bzl release 2021-11-10 09:11:56 -08:00

README.md

Aspect's Bazel helpers library

This is code we would contribute 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.

Installation

Include this in your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_bazel_lib",
    url = "https://github.com/myorg/bazel_lib/releases/download/0.0.0/bazel_lib-0.0.0.tar.gz",
    sha256 = "",
)

note, in the above, replace the version and sha256 with the one indicated in the release notes for bazel_lib In the future, our release automation should take care of this.