Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: upgrade all dated deps
  • Loading branch information
SimenB committed Nov 7, 2018
1 parent 4bfdee5 commit 337b8ee
Show file tree
Hide file tree
Showing 4 changed files with 1,490 additions and 1,741 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Expand Up @@ -22,7 +22,6 @@ module.exports = {
strict: 'error',
'prefer-template': 'warn',
'object-shorthand': ['warn', 'always', { avoidExplicitReturnArrows: true }],
'node/no-unsupported-features': 'error',
'prefer-destructuring': [
'error',
{
Expand Down
2 changes: 1 addition & 1 deletion dangerfile.js
@@ -1,6 +1,6 @@
'use strict';

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

// Ensure that people include a description on their PRs
Expand Down
28 changes: 16 additions & 12 deletions package.json
Expand Up @@ -29,22 +29,20 @@
"scripts": {
"lint": "eslint . --ignore-pattern '!.eslintrc.js'",
"prettylint": "prettylint docs/**/*.md README.md package.json",
"test": "jest",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS"
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^6.0.1",
"@commitlint/config-conventional": "^6.0.2",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-eslint-plugin": "^1.4.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jest": "^22.0.4",
"jest-runner-eslint": "^0.4.0",
"lint-staged": "^7.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.0.1",
"jest": "^23.4.1",
"jest-runner-eslint": "^0.7.1",
"lint-staged": "^8.0.4",
"prettier": "^1.10.2",
"prettylint": "^1.0.0"
},
Expand Down Expand Up @@ -90,5 +88,11 @@
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}

0 comments on commit 337b8ee

Please sign in to comment.