Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit 9f87c7a

Browse files
committedMar 3, 2020
docs: update
1 parent c2ad39a commit 9f87c7a

File tree

5 files changed

+1228
-998
lines changed

5 files changed

+1228
-998
lines changed
 

‎.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
sudo: false
21
language: node_js
32
cache:
43
directories:
54
- node_modules
65
notifications:
76
email: false
87
node_js:
9-
- "8"
10-
before_install:
11-
- npm i -g npm@^6.0.0
8+
- '12'
129
before_script:
1310
- npm prune
1411
script:

‎.vscode/settings.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"eslint.enable": true,
33
"eslint.autoFixOnSave": true,
44
"eslint.packageManager": "npm",
5-
"prettier.requireConfig": true
5+
"prettier.requireConfig": true,
6+
"editor.codeActionsOnSave": {
7+
"source.fixAll.eslint": true
8+
}
69
}

‎README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,18 @@
1717

1818
## Note
1919

20-
We already know what is tweening and why it's need, so there no need to describe it's, Google will do this if you want.
21-
**This library is not made as alternative to another libraries, it's has own pros and cons**
20+
This project is now entering into maintaining mode as no support from community and i don't have enough time to keep this project alive, maintain and add features. Bug-fixes also will be stopped. PR's are welcome.
21+
22+
You can make this project alive again with support by [became Patron](https://patreon.com/dalisoft)
23+
24+
> See "My Patreon" page "Goals" section for more info
2225
2326
## Frameworks
2427

2528
- [react-es6-tween](https://github.com/dalisoft/react-es6-tween)
2629

2730
## Docs
2831

29-
- [See docs at GitBook](https://tweenjs.gitbook.io/es6-tween/)
30-
- [Homepage](https://tweenjs.github.io/es6-tween/) (not completed)
3132
- [API documentation](./API.md)
3233
- [Wiki page](https://github.com/tweenjs/es6-tween/wiki)
3334

@@ -79,7 +80,7 @@ Download the [library](https://unpkg.com/es6-tween/bundled/Tween.js) and include
7980
<script src="https://npmcdn.com/es6-tween"></script>
8081
```
8182

82-
### More advanced users might want to...
83+
### More advanced users might want to
8384

8485
#### Using `import`
8586

@@ -157,7 +158,7 @@ I sure, BrowserStack helps us to make it, so i am linking to BrowserStack as our
157158
## Tests
158159

159160
```bash
160-
$ yarn test
161+
yarn test
161162
```
162163

163164
or you can go [here](https://travis-ci.org/tweenjs/es6-tween) for more information, tests and etc...

‎package-lock.json

+1,210-985
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "es6-tween",
3-
"version": "5.5.10",
3+
"version": "5.5.11",
44
"description": "ES6 implementation of amazing tween.js",
55
"browser": "bundled/Tween.min.js",
66
"cdn": "bundled/Tween.min.js",
@@ -9,12 +9,16 @@
99
"directories": {
1010
"example": "examples"
1111
},
12+
"funding": {
13+
"type": "patreon",
14+
"url": "https://www.patreon.com/dalisoft"
15+
},
1216
"scripts": {
1317
"source": "npx rollup -c",
1418
"minify": "npx uglifyjs bundled/Tween.js -c -m -o bundled/Tween.min.js --source-map \"filename='bundled/Tween.min.js.map'\"",
1519
"build": "npm run source && npm run minify",
1620
"dev": "npx rollup -c -w",
17-
"prepublishOnly": "npm run build && npm run lint && npm run doc && npm run doc-md",
21+
"prepublishOnly": "npm run lint && npm run build",
1822
"doc": "npx jsdoc --readme README.md --configure jsdoc.json",
1923
"doc-md": "npx jsdoc2md src/** > API.md",
2024
"test": "npm run lint && npm run source && npx ava",

0 commit comments

Comments
 (0)
This repository has been archived.