Skip to content

v0.5.0

Compare
Choose a tag to compare
@github-actions github-actions released this 08 Jan 20:02
· 6 commits to main since this release
3e57ea5

MODULE.bazel setup:

bazel_dep(name = "com_github_benchsci_rules_nodejs_gazelle", version = "0.0.0", repo_name = "com_github_benchsci_rules_nodejs_gazelle")

archive_override(
    module_name = "com_github_benchsci_rules_nodejs_gazelle",
    integrity = "sha256-m0F7Wy9KDigJTRuwlnFwYuehO2FQSkdakVMjEBVEnTE=",
    strip_prefix = "rules_nodejs_gazelle-0.5.0",
    urls = [
        "https://github.com/benchsci/rules_nodejs_gazelle/archive/refs/tags/v0.5.0.tar.gz",
    ],
)

WORKSPACE setup:

http_archive(
    name = "com_github_benchsci_rules_nodejs_gazelle",
    sha256 = "c3734c1d4f18f58c74e1efb1ab83dd2bed84d0de2e0b26c8c0fcb649bdbb75a1",
    strip_prefix = "rules_nodejs_gazelle-0.5.0",
    urls = [
        "https://github.com/benchsci/rules_nodejs_gazelle/archive/refs/tags/v0.5.0.tar.gz",
    ],
)

What's Changed

  • Fix the builtins lookup by @vihangm in #50
  • Nextjs uses parens to create route groups, this ensures we can support them by @vihangm in #49
  • Simplify jest_test rules by @vihangm in #47
  • Implement bzlmod by @ewianda in #52
  • Fix resolver on packages with @types suffix by @Olsworn in #53
  • Add support for snapshot attrs for tests that include snapshots by @vihangm in #48

New Contributors

Full Changelog: v0.4.1...v0.5.0