v1.0.1
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "b73e6c5c273269e5bec4fb6f0d64e33ad7663a3772d7a1d642d98eb819eaf17c",
strip_prefix = "rules_rollup-1.0.1",
url = "https://github.com/aspect-build/rules_rollup/releases/download/v1.0.1/rules_rollup-v1.0.1.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
rules_rollup_dependencies()
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
load("@aspect_rules_js//npm:npm_import.bzl", "npm_translate_lock")
npm_translate_lock(
name = "npm",
pnpm_lock = "@aspect_rules_rollup//:pnpm-lock.yaml",
)
load("@npm//:repositories.bzl", "npm_repositories")
npm_repositories()
What's Changed
- chore: update README so it slurps to docs.aspect.build by @alexeagle in #86
- build: upgrade buildifier_prebuilt to 6.3.3 by @jbedard in #87
- chore: update to Bazel 6.3.2 and Aspect CLI 5.7.2 by @gregmagolan in #88
- chore: BCR testing on Bazel 6 and 7 by @alexeagle in #91
- chore: cancel previous GHA from the same PR by @gregmagolan in #92
- chore: remove Go by @alexeagle in #93
Full Changelog: v1.0.0...v1.0.1