@tweenjs/tween.js 18.6.0 → 18.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -11
- package/dist/tween.amd.js +807 -782
- package/dist/tween.cjs.js +806 -781
- package/dist/tween.d.ts +262 -0
- package/dist/tween.esm.js +792 -781
- package/dist/tween.umd.js +810 -785
- package/package.json +14 -9
- package/dist/index.d.ts +0 -273
package/README.md
CHANGED
@@ -3,14 +3,11 @@
|
|
3
3
|
JavaScript tweening engine for easy animations, incorporating optimised Robert Penner's equations.
|
4
4
|
|
5
5
|
[![NPM Version][npm-image]][npm-url]
|
6
|
-
[![NPM Downloads][downloads-image]][downloads-url]
|
7
|
-
[![Travis tests][travis-image]][travis-url]
|
8
|
-
[![Flattr this][flattr-image]][flattr-url]
|
9
6
|
[![CDNJS][cdnjs-image]][cdnjs-url]
|
7
|
+
[![NPM Downloads][downloads-image]][downloads-url]
|
8
|
+
[![Build and Tests][ci-image]][ci-url]
|
10
9
|
|
11
|
-
|
12
|
-
|
13
|
-
**Update Note** In v18 the script you should include has moved from `src/Tween.js` to `dist/tween.umd.js`. See the [installation section](#Installation) below. v18 is not yet available on CDNJS.
|
10
|
+
**Update Note** In v18 the script you should include has moved from `src/Tween.js` to `dist/tween.umd.js`. See the [installation section](#Installation) below.
|
14
11
|
|
15
12
|
---
|
16
13
|
|
@@ -254,7 +251,7 @@ If you want to add any feature or change existing features, you _must_ run the t
|
|
254
251
|
|
255
252
|
## People
|
256
253
|
|
257
|
-
Maintainers: [mikebolt](https://github.com/mikebolt), [sole](https://github.com/sole).
|
254
|
+
Maintainers: [mikebolt](https://github.com/mikebolt), [sole](https://github.com/sole), [Joe Pea (@trusktr)](https://github.com/trusktr).
|
258
255
|
|
259
256
|
[All contributors](http://github.com/tweenjs/tween.js/contributors).
|
260
257
|
|
@@ -275,9 +272,7 @@ Maintainers: [mikebolt](https://github.com/mikebolt), [sole](https://github.com/
|
|
275
272
|
[npm-url]: https://npmjs.org/package/@tweenjs/tween.js
|
276
273
|
[downloads-image]: https://img.shields.io/npm/dm/@tweenjs/tween.js.svg
|
277
274
|
[downloads-url]: https://npmjs.org/package/@tweenjs/tween.js
|
278
|
-
[
|
279
|
-
[
|
280
|
-
[flattr-image]: https://api.flattr.com/button/flattr-badge-large.png
|
281
|
-
[flattr-url]: https://flattr.com/thing/45014/tween-js
|
275
|
+
[ci-image]: https://github.com/tweenjs/tween.js/workflows/build%20and%20tests/badge.svg?branch=master
|
276
|
+
[ci-url]: https://github.com/tweenjs/tween.js/actions
|
282
277
|
[cdnjs-image]: https://img.shields.io/cdnjs/v/tween.js.svg
|
283
278
|
[cdnjs-url]: https://cdnjs.com/libraries/tween.js
|