Skip to content

v3.0.0

Choose a tag to compare

@kettanaito kettanaito released this 20 Sep 10:26
· 8 commits to main since this release

v3.0.0 (2025-09-20)

⚠️ BREAKING CHANGES

  • this package is now ESM-only.
  • until now returns a discriminated array union type (#34) (1773deb) @kettanaito
-const { error, data } = await until(callback)
+const [error, data] = await until(callback)

This change implies you are using a modern version of TypeScript that supports discriminated array union types.