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

Commit 8ab9772

Browse files
committed
## UPDATE
## v1.10.6 #### Fixes - Fixed `dist` folder files (changed to latest)
1 parent 7f806c9 commit 8ab9772

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## v1.10.6
4+
5+
#### Fixes
6+
- Fixed `dist` folder files (changed to latest)
7+
8+
39
## v1.10.5
410

511
#### Improvements

dist.bat

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@echo off
2+
echo Packaging files...
3+
npm run dist
4+
@echo Testing...
5+
npm run test
6+
@echo All is runned fine, if there no error
7+
pause;

dist/Tween.min.js

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "es6-tween",
3-
"version": "1.10.5",
3+
"version": "1.10.6",
44
"description": "ES6 implementation of amazing tween.js",
55
"main": "dist/Tween.js",
66
"directories": {

release.bat

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@echo off
2+
set /P commit=Enter commit log:
3+
git commit -m "%commit%"
4+
git push
5+
echo Publishing...
6+
npm publish
7+
echo Done... (if there no error)
8+
pause

0 commit comments

Comments
 (0)