Skip to content

Releases: pearofducks/femtoTween

Drop support for older browsers and umd

09 Jul 14:00
Compare
Choose a tag to compare

This release changes exports to only provide an ESM package with no transpilation.

Add 'stop' function

12 Mar 12:31
Compare
Choose a tag to compare
  • tween now returns a function that can be called to stop tweening
const stop = tween(0, 100, v => { animatedValue = v })
stop()

Update builds

02 Jun 19:45
Compare
Choose a tag to compare

This release changes a few minor things about the builds provided by this module:

  • Typescript has been dropped, as it was providing almost no benefit.
  • The UMD build has been renamed to femtoTween.umd.js instead of just femtoTween.js to be more explicit about its content.
  • Sourcemaps are no longer provided for the esm build, because they were pointless.