@tweenjs/tween.js 20.0.3 → 21.0.0

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -7,6 +7,8 @@ JavaScript (TypeScript) tweening engine for easy animations, incorporating optim
7
7
  [![NPM Downloads][downloads-image]][downloads-url]
8
8
  [![Build and Tests][ci-image]][ci-url]
9
9
 
10
+ More languages: [English](./README.md), [简体中文](./README_zh-CN.md)
11
+
10
12
  ---
11
13
 
12
14
  ```html
package/dist/tween.amd.js CHANGED
@@ -814,7 +814,7 @@ define(['exports'], (function (exports) { 'use strict';
814
814
  return Tween;
815
815
  }());
816
816
 
817
- var VERSION = '20.0.3';
817
+ var VERSION = '21.0.0';
818
818
 
819
819
  /**
820
820
  * Tween.js - Licensed under the MIT license
package/dist/tween.cjs.js CHANGED
@@ -816,7 +816,7 @@ var Tween = /** @class */ (function () {
816
816
  return Tween;
817
817
  }());
818
818
 
819
- var VERSION = '20.0.3';
819
+ var VERSION = '21.0.0';
820
820
 
821
821
  /**
822
822
  * Tween.js - Licensed under the MIT license
package/dist/tween.d.ts CHANGED
@@ -152,7 +152,7 @@ declare class Sequence {
152
152
  static nextId(): number;
153
153
  }
154
154
 
155
- declare const VERSION = "20.0.3";
155
+ declare const VERSION = "21.0.0";
156
156
 
157
157
  declare const nextId: typeof Sequence.nextId;
158
158
  declare const getAll: () => Tween<UnknownProps>[];
package/dist/tween.esm.js CHANGED
@@ -812,7 +812,7 @@ var Tween = /** @class */ (function () {
812
812
  return Tween;
813
813
  }());
814
814
 
815
- var VERSION = '20.0.3';
815
+ var VERSION = '21.0.0';
816
816
 
817
817
  /**
818
818
  * Tween.js - Licensed under the MIT license
package/dist/tween.umd.js CHANGED
@@ -818,7 +818,7 @@
818
818
  return Tween;
819
819
  }());
820
820
 
821
- var VERSION = '20.0.3';
821
+ var VERSION = '21.0.0';
822
822
 
823
823
  /**
824
824
  * Tween.js - Licensed under the MIT license
package/package.json CHANGED
@@ -1,11 +1,17 @@
1
1
  {
2
2
  "name": "@tweenjs/tween.js",
3
- "description": "Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.",
4
- "version": "20.0.3",
3
+ "description": "Simple and fast tweening engine with optimised Robert Penner's equations.",
4
+ "version": "21.0.0",
5
5
  "type": "module",
6
6
  "main": "dist/tween.cjs.js",
7
7
  "types": "dist/tween.d.ts",
8
8
  "module": "dist/tween.esm.js",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/tween.esm.js",
12
+ "require": "./dist/tween.cjs.js"
13
+ }
14
+ },
9
15
  "files": [
10
16
  "dist",
11
17
  "README.md",