Skip to content

v0.3.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 24 Jul 02:13
· 35 commits to main since this release
a321136

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_cypress",
    sha256 = "1baad42cb38d5c50eac0df9c92e2e9d89539aebbc086af0a974e03f32dfbe88a",
    strip_prefix = "rules_cypress-0.3.0",
    url = "https://github.com/aspect-build/rules_cypress/releases/download/v0.3.0/rules_cypress-v0.3.0.tar.gz",
)

######################
# rules_cypress setup #
######################
# Fetches the rules_cypress 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.
load("@aspect_rules_cypress//cypress:dependencies.bzl", "rules_cypress_dependencies")
load("@aspect_rules_cypress//cypress:repositories.bzl", "cypress_register_toolchains")

rules_cypress_dependencies()

cypress_register_toolchains(
    name = "cypress",
    cypress_version = "12.12.0",
)

What's Changed

  • fix: rename LATEST_VERSION to LATEST_CYPRESS_VERSION by @jbedard in #38
  • feat: update to rules_js 1.27.0 and pickup fixed_args feature by @gregmagolan in #40
  • ci: enable buildifier check on ci by @jbedard in #41
  • chore: bump rules_js dep to 1.29.2 to pickup Windows fix by @gregmagolan in #42
  • chore: Update Cypress Version by @justinba1010 in #39

New Contributors

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