Skip to content

v0.15.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 04 Jul 03:29
· 24 commits to main since this release
85d3b8b

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_rollup",
    sha256 = "fa8136b78dab9b41e2be3298f8f863cc648e1e24a1448bf1d60d1893ddfcacd6",
    strip_prefix = "rules_rollup-0.15.1",
    url = "https://github.com/aspect-build/rules_rollup/releases/download/v0.15.1/rules_rollup-v0.15.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

  • ci: enable buildifier check on ci by @jbedard in #82
  • chore: bump rules_js dep to 1.29.2 to pickup Windows fix by @gregmagolan in #83

Full Changelog: v0.15.0...v0.15.1