Skip to content

v0.6.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 12 Apr 20:54
· 115 commits to main since this release
4c9e861

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_jasmine",
    sha256 = "bb55ad9ce24a4381753f177287cffe5a0e159016012b688261bd5abc831d6ed3",
    strip_prefix = "rules_jasmine-0.6.0",
    url = "https://github.com/aspect-build/rules_jasmine/releases/download/v0.6.0/rules_jasmine-v0.6.0.tar.gz",
)

######################
# aspect_rules_jasmine setup #
######################
# Fetches the aspect_rules_jasmine 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_jasmine//jasmine:dependencies.bzl", "rules_jasmine_dependencies")

# Fetch dependencies which users need as well
rules_jasmine_dependencies()

load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")

nodejs_register_toolchains(
    name = "nodejs",
    node_version = DEFAULT_NODE_VERSION,
)

load("@aspect_rules_js//npm:npm_import.bzl", "npm_translate_lock")

npm_translate_lock(
    name = "npm",
    npmrc = "//:.npmrc",
    pnpm_lock = "//:pnpm-lock.yaml",
    verify_node_modules_ignored = "//:.bazelignore",
)

load("@npm//:repositories.bzl", "npm_repositories")

npm_repositories()

What's Changed

  • test: add various test cases from rules_nodejs by @jbedard in #49
  • chore: re-use GHA workflow from rules-template by @alexeagle in #50
  • also use reusable workflow for release by @alexeagle in #51
  • fix: release used wrong reusable workflow by @gregmagolan in #54
  • perf: use rules_js Bazel 6 optimized fs patches if using Bazel 6 and experimental_allow_unresolved_symlinks is on by @gregmagolan in #55

New Contributors

Full Changelog: v0.5.0...v0.6.0