Skip to content

Commit 5290e34

Browse files
committedNov 8, 2020
perf(package): deps revision, fix vuls
1 parent 48f55e0 commit 5290e34

File tree

3 files changed

+2523
-6750
lines changed

3 files changed

+2523
-6750
lines changed
 

‎.travis.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
language: node_js
2-
node_js:
3-
- '10'
4-
5-
before_install:
6-
- npm install -g greenkeeper-lockfile
2+
node_js: 14
73

84
before_script:
9-
- greenkeeper-lockfile-update
105
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
116
- chmod +x ./cc-test-reporter
127
- ./cc-test-reporter before-build
138

149
after_script:
15-
- greenkeeper-lockfile-upload
1610
- ./cc-test-reporter format-coverage -t lcov ./coverage/lcov.info
1711
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
1812

@@ -25,5 +19,4 @@ script:
2519
deploy:
2620
provider: script
2721
skip_cleanup: true
28-
script:
29-
- npx semantic-release
22+
script: npx -p @qiwi/semrel-toolkit semrel -e @qiwi/semrel-config

‎npm-shrinkwrap.json

+2,516-6,714
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+5-27
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,13 @@
2525
"jest": "BABEL_ENV=test NODE_ENV=test jest -w 1 --detectOpenHandles --config jest.config.json",
2626
"lint": "standard src/**/*.js",
2727
"lint:fix": "npm run lint -- --fix",
28-
"postupdate": "npm i && npm audit fix && npm test"
28+
"postupdate": "npm i && npm shrinkwrap && npm audit fix && npm test"
2929
},
3030
"devDependencies": {
31-
"@semantic-release/changelog": "^5.0.1",
32-
"@semantic-release/git": "^9.0.0",
33-
"@semantic-release/github": "^7.0.7",
34-
"@semantic-release/npm": "^7.0.5",
3531
"coveralls": "^3.1.0",
36-
"jest": "^26.1.0",
37-
"mock-fs": "^4.12.0",
38-
"semantic-release": "^17.1.1",
39-
"standard": "^14.3.4"
32+
"jest": "^26.6.3",
33+
"mock-fs": "^4.13.0",
34+
"standard": "^16.0.1"
4035
},
4136
"standard": {
4237
"globals": [
@@ -59,25 +54,8 @@
5954
},
6055
"dependencies": {
6156
"find-git-root": "^1.0.4",
62-
"lodash": "^4.17.19",
57+
"lodash": "^4.17.20",
6358
"read-pkg": "^5.2.0",
6459
"semver": "^7.3.2"
65-
},
66-
"release": {
67-
"branch": "master",
68-
"verifyConditions": [
69-
"@semantic-release/changelog",
70-
"@semantic-release/npm",
71-
"@semantic-release/git"
72-
],
73-
"prepare": [
74-
"@semantic-release/changelog",
75-
"@semantic-release/npm",
76-
"@semantic-release/git"
77-
],
78-
"publish": [
79-
"@semantic-release/npm",
80-
"@semantic-release/github"
81-
]
8260
}
8361
}

0 commit comments

Comments
 (0)
Please sign in to comment.