Skip to content

v0.1.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 08 Apr 19:45
· 41 commits to main since this release
50ef90e

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_cypress",
    sha256 = "853f3b8c6889374e3c9f8ec386bd59560f8d033ce5dd5cd0ed3867e93cf17052",
    strip_prefix = "rules_cypress-0.1.0",
    url = "https://github.com/aspect-build/rules_cypress/releases/download/v0.1.0/rules_cypress-v0.1.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.3.0",
)