@tweenjs/tween.js 21.0.0 → 21.1.1
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 +2 -3
- package/dist/tween.amd.js +1 -1
- package/dist/tween.cjs.js +1 -1
- package/dist/tween.d.ts +1 -1
- package/dist/tween.esm.js +1 -1
- package/dist/tween.umd.js +1 -1
- package/package.json +7 -11
package/README.md
CHANGED
|
@@ -151,9 +151,8 @@ import * as TWEEN from '@tweenjs/tween.js'
|
|
|
151
151
|
|
|
152
152
|
- [User guide](./docs/user_guide.md)
|
|
153
153
|
- [Contributor guide](./docs/contributor_guide.md)
|
|
154
|
-
- [Tutorial](http://learningthreejs.com/blog/2011/08/17/tweenjs-for-smooth-animation/) using tween.js with three.js
|
|
154
|
+
- [Tutorial](https://web.archive.org/web/20220601192930/http://learningthreejs.com/blog/2011/08/17/tweenjs-for-smooth-animation/) using tween.js with three.js
|
|
155
155
|
- Also: [libtween](https://github.com/jsm174/libtween), a port of tween.js to C by [jsm174](https://github.com/jsm174)
|
|
156
|
-
- [Understanding tween.js](https://mikebolt.me/article/understanding-tweenjs.html)
|
|
157
156
|
|
|
158
157
|
# Examples
|
|
159
158
|
|
|
@@ -369,7 +368,7 @@ If you want to add any feature or change existing features, you _must_ run the t
|
|
|
369
368
|
|
|
370
369
|
# People
|
|
371
370
|
|
|
372
|
-
Maintainers: [
|
|
371
|
+
Maintainers: [Joe Pea (@trusktr)](https://github.com/trusktr).
|
|
373
372
|
|
|
374
373
|
[All contributors](http://github.com/tweenjs/tween.js/contributors).
|
|
375
374
|
|
package/dist/tween.amd.js
CHANGED
package/dist/tween.cjs.js
CHANGED
package/dist/tween.d.ts
CHANGED
package/dist/tween.esm.js
CHANGED
package/dist/tween.umd.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tweenjs/tween.js",
|
|
3
3
|
"description": "Simple and fast tweening engine with optimised Robert Penner's equations.",
|
|
4
|
-
"version": "21.
|
|
4
|
+
"version": "21.1.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/tween.cjs.js",
|
|
7
7
|
"types": "dist/tween.d.ts",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
11
|
"import": "./dist/tween.esm.js",
|
|
12
|
-
"require": "./dist/tween.cjs.js"
|
|
12
|
+
"require": "./dist/tween.cjs.js",
|
|
13
|
+
"types": "./dist/tween.d.ts"
|
|
13
14
|
}
|
|
14
15
|
},
|
|
15
16
|
"files": [
|
|
@@ -40,9 +41,9 @@
|
|
|
40
41
|
"examples": "npx serve .",
|
|
41
42
|
"test": "npm run build && npm run test-lint && npm run test-unit",
|
|
42
43
|
"test-unit": "nodeunit test/unit/nodeunitheadless.cjs",
|
|
43
|
-
"test-lint": "npm run prettier -- --check
|
|
44
|
-
"lint": "npm run prettier -- --write
|
|
45
|
-
"prettier": "prettier
|
|
44
|
+
"test-lint": "npm run prettier -- --check",
|
|
45
|
+
"lint": "npm run prettier -- --write",
|
|
46
|
+
"prettier": "prettier .",
|
|
46
47
|
"prepare": "npm run build",
|
|
47
48
|
"version": "npm test && git add .",
|
|
48
49
|
"release:patch": "npm version patch --message 'v%s' && npm publish && npm run _release:push-branch",
|
|
@@ -52,13 +53,8 @@
|
|
|
52
53
|
},
|
|
53
54
|
"author": "tween.js contributors (https://github.com/tweenjs/tween.js/graphs/contributors)",
|
|
54
55
|
"devDependencies": {
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^3.1.0",
|
|
56
|
-
"@typescript-eslint/parser": "^3.1.0",
|
|
57
|
-
"eslint": "^7.1.0",
|
|
58
|
-
"eslint-config-prettier": "^6.7.0",
|
|
59
|
-
"eslint-plugin-prettier": "^3.1.1",
|
|
60
56
|
"nodeunit": "^0.11.3",
|
|
61
|
-
"prettier": "
|
|
57
|
+
"prettier": "^3.0.0",
|
|
62
58
|
"rimraf": "^3.0.0",
|
|
63
59
|
"rollup": "3.20.7",
|
|
64
60
|
"rollup-plugin-dts": "5.3.0",
|