v0.7.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 = "5b706261f595d8d6246f3909c49bbff668430c4177b2ead1a76d30c12682d78d",
strip_prefix = "rules_rollup-0.7.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.7.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
- fix: use short_path when resolving files in bazel-out by @alexeagle in #10
- fix: rename rollup_bundle.bzl to defs.bzl by @thesayyn in #11
- fix: default for rollup config pointed to non-existent target by @alexeagle in #12
- chore: update to rules_js 0.13.0 by @gregmagolan in #14
- Configure Renovate by @jbedard in #15
- chore(deps): update actions/cache action to v3 by @renovate in #17
- chore(deps): update actions/checkout action to v3 by @renovate in #18
New Contributors
Full Changelog: v0.6.0...v0.7.0