Skip to content

v0.3.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 31 May 21:27
· 107 commits to main since this release
4d7096d

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_rollup",
    sha256 = "ca9776d93cf4da9da65f26ea72b9d4279a80caec838b5ea8522320f9a250d9f2",
    strip_prefix = "rules_rollup-0.3.0",
    url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.3.0.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()

load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")

rollup_register_toolchains(
    name = "rollup",
    rollup_version = LATEST_VERSION,
)

# 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,
)

What's Changed

Full Changelog: v0.2.0...v0.3.0