Skip to content

v0.3.4

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 22 Mar 03:30
· 26 commits to main since this release
b2ddd0b

WORKSPACE snippet:

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

  • chore(deps): bump tough-cookie from 2.5.0 to 4.1.3 in /cypress/tests by @dependabot in #47

New Contributors

Full Changelog: v0.3.3...v0.3.4