Skip to content

Releases: aspect-build/rules_cypress

v0.2.0

12 Apr 21:00
0a7ed57
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

WORKSPACE snippet:

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

What's Changed

  • perf: use rules_js Bazel 6 optimized fs patches if using Bazel 6 and experimental_allow_unresolved_symlinks is on by @gregmagolan in #37

Full Changelog: v0.1.0...v0.2.0

v0.1.0

08 Apr 19:45
50ef90e
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

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",
)