Skip to content

v0.3.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 26 Feb 19:20
· 30 commits to main since this release
3b6368f

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_cypress",
    sha256 = "8cbb7d4c7e6afb7209d16f7f8f31ee69c968860d42e867b3d39d0f211501d270",
    strip_prefix = "rules_cypress-0.3.3",
    url = "https://github.com/aspect-build/rules_cypress/releases/download/v0.3.3/rules_cypress-v0.3.3.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

New Contributors

Full Changelog: v0.3.2...v0.3.3