Skip to content

Releases: teadjs/tead

0.7.1

16 Jun 22:00
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.7.0...0.7.1

0.7.0

16 Jun 17:32
Compare
Choose a tag to compare

Breaking changes

  • dropping support for Node < 18
  • watch mode only picks up changes for tests themselves, not the modules they import (#33)

0.6.0

07 Feb 05:00
Compare
Choose a tag to compare

Breaking changes

  • Dropping support for Node < 12
  • Enabling ES Modules in your projects may require updates to opt-in for native Node support
    • Usually the best approach is adding "type": "module" to your package.json

What's new?

Faster install/run without any dependencies! 🏎️

0.5.2

07 Sep 05:31
Compare
Choose a tag to compare

Bug fixes

Resolved incompatibility with Node.js v10 by updating version of esm. Fixed in df75681. Thanks @spatialillusions for #25!

0.5.1

14 Sep 16:42
98beb8c
Compare
Choose a tag to compare

What's new?

The --coverage option now works without installing Tead to your node_modules! 🎉

To make this possible, we downgraded esm from dependencies to devDependencies and publish their package along with ours. See 98beb8c.

0.5.0

14 Sep 16:39
915d33f
Compare
Choose a tag to compare

Breaking changes

The awkward --noesm flag has been removed from supported options. This is possible because of the migration from @std/esm to esm, which plays more nicely with our coverage option. See 915d33f.

0.4.4

22 Jul 17:33
Compare
Choose a tag to compare

What's new?

Better handling for diff with very small or very large numbers. Thanks Number.EPSILON!

Bug fixes

Resolved incompatibility with Node.js v10 by updating version of @std/esm. Fixed in 6529019. Thanks @mindreframer for #19!