Skip to content

Releases: repobuddy/jest-watch-suspend

v2.0.0

Choose a tag to compare

@github-actions github-actions released this 07 Sep 05:33
898ef19

Major Changes

  • c730d86: Ship ESM only.

    The package is now "type": "module" and lib/ holds a single ESM build. The
    plugin class moved from export = to a default export, which is what jest's
    requireOrImportModule reads off an imported namespace.

    Migration

    • Requires jest >= 28. Jest has loaded ESM watch plugins since 27, but it
      resolves the plugin path with the default require/node/default conditions
      and only honours exports from 28 — so the exports map deliberately points its
      default condition at the ESM entry, and jest 27 and older are no longer supported.
    • require('jest-watch-suspend') no longer works. Configure the plugin by name in
      watchPlugins as before; jest imports it for you.

Patch Changes

  • 090e7bd: Declare a supported Node range: ^20.19.0 || ^22.13.0 || >=24.

    Every version in that range has unflagged require(esm), so a CommonJS consumer's
    require() of this now-ESM-only package resolves rather than throwing ERR_REQUIRE_ESM.
    Node 18 (EOL April 2025) and Node 20.0–20.18 are excluded because require() hard-fails there.

v1.1.3

Choose a tag to compare

@github-actions github-actions released this 03 Sep 05:59
1be8e35

Patch Changes

  • 6732d60: Rebuild with tsdown and refresh the runtime dependencies: chalk ^3^4 and
    unpartial ^0.6.3^1.0.6. The published paths (lib/index.js, lib/index.d.ts,
    lib/WatchSuspendPlugin.*) and the public API are unchanged; only the emitted output
    and the dependency ranges consumers install move.

All notable changes to this project are documented here.

Releases up to and including 1.1.2 predate this file and are listed at
https://github.com/unional/jest-watch-suspend/releases.

v1.1.2

Choose a tag to compare

@unional unional released this 13 May 03:26
8d7d384

1.1.2 (2019-05-13)

Bug Fixes

v1.1.1

Choose a tag to compare

@unional unional released this 31 Dec 09:06
4749da7

1.1.1 (2018-12-31)

Bug Fixes

  • show suspend message is bold even not in verbose mode. (#11) (4749da7)

v1.1.0

Choose a tag to compare

@unional unional released this 26 Sep 01:11
e2ce32f

1.1.0 (2018-09-26)

Features

  • remove first run special treatment. (#6) (e2ce32f)

v1.0.1

Choose a tag to compare

@unional unional released this 24 Sep 08:51
361033f

1.0.1 (2018-09-24)

Bug Fixes

  • add jest 23 as peerDependency (#2) (361033f)

v1.0.0

Choose a tag to compare

@unional unional released this 24 Sep 08:23
0670a39

1.0.0 (2018-09-24)

Features