Skip to content

Commit 51555a5

Browse files
Merge pull request #230 from technote-space/release/next-v1.5.8
release: v1.5.9
2 parents 4469c0b + 2df6945 commit 51555a5

File tree

4 files changed

+650
-595
lines changed

4 files changed

+650
-595
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
node_modules/
33
/coverage
44
/build
5-
/travis-ci
5+
/ci-helper
66
/gh-pages
77
/.work
88
!/bin

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
"yarn install",
1616
"yarn build"
1717
],
18-
"bin:js-lint": "TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) ./travis-ci/bin/js/js-lint.sh",
19-
"bin:js-test": "TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) ./travis-ci/bin/js/js-test.sh",
20-
"bin:test": "TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) bash ./travis-ci/bin/test.sh",
18+
"bin:js-lint": "TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) ./ci-helper/bin/js/js-lint.sh",
19+
"bin:js-test": "TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) ./ci-helper/bin/js/js-test.sh",
20+
"bin:test": "TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) bash ./ci-helper/bin/test.sh",
2121
"bin:download": [
22-
"mkdir -p ./travis-ci/.git",
23-
"chmod -R +w ./travis-ci/.git && rm -rdf ./travis-ci",
22+
"mkdir -p ./ci-helper/.git",
23+
"chmod -R +w ./ci-helper/.git && rm -rdf ./ci-helper",
2424
"rm -f ./tests/bootstrap.php ./.coveralls.yml ./phpcs.xml ./phpmd.xml phpunit.xml",
25-
"git clone --depth=1 https://github.com/wp-content-framework/travis-ci.git travis-ci"
25+
"git clone --depth=1 https://github.com/wp-content-framework/ci-helper.git ci-helper"
2626
],
2727
"bin:update": [
28-
"TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) bash ./travis-ci/bin/update/package.sh"
28+
"TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) bash ./ci-helper/bin/update/package.sh"
2929
],
30-
"bin:gh-pages": "TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) GH_PAGES_TITLE='jQuery Marker Animation' bash ./travis-ci/bin/deploy/gh-pages.sh"
30+
"bin:gh-pages": "TRAVIS_BUILD_DIR=$(cd $(dirname $0); pwd) GH_PAGES_TITLE='jQuery Marker Animation' bash ./ci-helper/bin/deploy/gh-pages.sh"
3131
}
3232
}

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery.marker-animation",
3-
"version": "1.5.8",
3+
"version": "1.5.9",
44
"description": "Marker animation jQuery plugin",
55
"keywords": [
66
"jquery-plugin",
@@ -38,23 +38,23 @@
3838
"update": "npx npm-check-updates -u && yarn install && yarn upgrade && yarn audit"
3939
},
4040
"devDependencies": {
41-
"@babel/core": "^7.13.1",
42-
"@babel/plugin-proposal-object-rest-spread": "^7.13.0",
43-
"@babel/plugin-transform-react-jsx": "^7.12.17",
44-
"@babel/plugin-transform-runtime": "^7.13.7",
45-
"@babel/preset-env": "^7.13.5",
46-
"@babel/register": "^7.13.0",
41+
"@babel/core": "^7.13.15",
42+
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
43+
"@babel/plugin-transform-react-jsx": "^7.13.12",
44+
"@babel/plugin-transform-runtime": "^7.13.15",
45+
"@babel/preset-env": "^7.13.15",
46+
"@babel/register": "^7.13.14",
4747
"babel-jest": "^26.6.3",
4848
"babel-loader": "^8.2.2",
4949
"duplicate-package-checker-webpack-plugin": "^3.0.0",
5050
"enzyme": "^3.11.0",
51-
"enzyme-to-json": "^3.6.1",
52-
"eslint": "^7.20.0",
51+
"enzyme-to-json": "^3.6.2",
52+
"eslint": "^7.24.0",
5353
"jest": "^26.6.3",
5454
"jquery-inview": "^1.1.2",
55-
"speed-measure-webpack-plugin": "^1.4.2",
56-
"webpack": "^5.24.2",
57-
"webpack-cli": "^4.5.0"
55+
"speed-measure-webpack-plugin": "^1.5.0",
56+
"webpack": "^5.33.2",
57+
"webpack-cli": "^4.6.0"
5858
},
5959
"publishConfig": {
6060
"access": "public"

0 commit comments

Comments
 (0)