v0.5.0
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "0ab48138b8762737a5e1808cc200c1ead91d07f632e190bbf10911237467bfb1",
strip_prefix = "rules_rollup-0.5.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.5.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
- chore: update to rules_js 0.11.0 by @gregmagolan in #7
Full Changelog: v0.4.0...v0.5.0