Skip to content

Commit 0b86495

Browse files
authored
feat(deps): Bump dependency versions (#59)
* swap semantic-version for standard-version * remove release from travis CI * use yarn for installing codecove on CI
1 parent 310ca8a commit 0b86495

File tree

3 files changed

+316
-556
lines changed

3 files changed

+316
-556
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ addons:
1717
- g++-4.8
1818
before_install:
1919
- yarn global add greenkeeper-lockfile@1
20-
- npm install -g codecov
20+
- yarn global add codecov
2121
install:
2222
- yarn
2323
before_script:
@@ -30,7 +30,6 @@ after_script:
3030
- greenkeeper-lockfile-upload
3131
after_success:
3232
- bash <(curl -s https://codecov.io/bash)
33-
- npm run release
3433
branches:
3534
except:
3635
- /^v\d+\.\d+\.\d+$/

package.json

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@
1515
"engines": {
1616
"node": ">= 8.9"
1717
},
18-
"keywords": ["jest", "vue", "test", "preprocessor", "transform"],
18+
"keywords": [
19+
"jest",
20+
"vue",
21+
"test",
22+
"preprocessor",
23+
"transform"
24+
],
1925
"dependencies": {
2026
"babel-plugin-transform-runtime": "6.23.0",
2127
"find-babel-config": "1.1.0",
@@ -34,7 +40,7 @@
3440
"lint-staged": "7.0.0",
3541
"prettier": "1.11.1",
3642
"pug": "2.0.1",
37-
"semantic-release": "15.0.3",
43+
"standard-version": "4.3.0",
3844
"validate-commit-msg": "2.14.0",
3945
"vue": "2.5.15",
4046
"vue-template-compiler": "2.5.15",
@@ -51,11 +57,13 @@
5157
"test:coverage": "npm t -- --coverage",
5258
"test:ci": "npm run test:coverage",
5359
"style": "eslint .",
54-
"style:fix": "npm run style -- --fix",
55-
"release": "semantic-release pre && npm publish && semantic-release post"
60+
"style:fix": "npm run style -- --fix"
5661
},
5762
"jest": {
58-
"moduleFileExtensions": ["js", "vue"],
63+
"moduleFileExtensions": [
64+
"js",
65+
"vue"
66+
],
5967
"coverageThreshold": {
6068
"global": {
6169
"branches": 40,
@@ -82,7 +90,11 @@
8290
}
8391
},
8492
"lint-staged": {
85-
"*.js": ["prettier --write", "style:fix", "git add"]
93+
"*.js": [
94+
"prettier --write",
95+
"style:fix",
96+
"git add"
97+
]
8698
},
8799
"peerDependencies": {
88100
"vue-template-compiler": "2.5.x",

0 commit comments

Comments
 (0)