Skip to content

Commit 337b8ee

Browse files
committed
chore: upgrade all dated deps
1 parent 4bfdee5 commit 337b8ee

File tree

4 files changed

+1490
-1741
lines changed

4 files changed

+1490
-1741
lines changed

.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ module.exports = {
2222
strict: 'error',
2323
'prefer-template': 'warn',
2424
'object-shorthand': ['warn', 'always', { avoidExplicitReturnArrows: true }],
25-
'node/no-unsupported-features': 'error',
2625
'prefer-destructuring': [
2726
'error',
2827
{

dangerfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
// eslint-disable-next-line node/no-unsupported-features
3+
// eslint-disable-next-line node/no-missing-require
44
const { danger, fail } = require('danger');
55

66
// Ensure that people include a description on their PRs

package.json

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,20 @@
2929
"scripts": {
3030
"lint": "eslint . --ignore-pattern '!.eslintrc.js'",
3131
"prettylint": "prettylint docs/**/*.md README.md package.json",
32-
"test": "jest",
33-
"precommit": "lint-staged",
34-
"commitmsg": "commitlint -e $GIT_PARAMS"
32+
"test": "jest"
3533
},
3634
"devDependencies": {
37-
"@commitlint/cli": "^6.0.1",
38-
"@commitlint/config-conventional": "^6.0.2",
35+
"@commitlint/cli": "^7.0.0",
36+
"@commitlint/config-conventional": "^7.0.1",
3937
"eslint": "^5.1.0",
40-
"eslint-config-prettier": "^2.7.0",
38+
"eslint-config-prettier": "^3.0.1",
4139
"eslint-plugin-eslint-plugin": "^1.4.0",
42-
"eslint-plugin-node": "^6.0.0",
43-
"eslint-plugin-prettier": "^2.3.1",
44-
"husky": "^0.14.3",
45-
"jest": "^22.0.4",
46-
"jest-runner-eslint": "^0.4.0",
47-
"lint-staged": "^7.0.0",
40+
"eslint-plugin-node": "^8.0.0",
41+
"eslint-plugin-prettier": "^3.0.0",
42+
"husky": "^1.0.1",
43+
"jest": "^23.4.1",
44+
"jest-runner-eslint": "^0.7.1",
45+
"lint-staged": "^8.0.4",
4846
"prettier": "^1.10.2",
4947
"prettylint": "^1.0.0"
5048
},
@@ -90,5 +88,11 @@
9088
"extends": [
9189
"@commitlint/config-conventional"
9290
]
91+
},
92+
"husky": {
93+
"hooks": {
94+
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
95+
"pre-commit": "lint-staged"
96+
}
9397
}
9498
}

0 commit comments

Comments
 (0)