Skip to content

Commit

Permalink
feat: upgrade all deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Aug 9, 2019
1 parent b23e390 commit 5f282c7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const config = require('kcd-scripts/dist/config/lintstagedrc')

// we need to exclude the test and lint scripts on commit because we run it in the validate script
const jsLinter = Object.keys(config.linters).find(key => key.includes('js'))
config.linters[jsLinter] = config.linters[jsLinter].filter(
const jsLinter = Object.keys(config).find(key => key.includes('js'))
config[jsLinter] = config[jsLinter].filter(
script => !script.includes('test') && !script.includes('lint'),
)

Expand Down
15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"test:typings:watch": "tsc -p tests/typescript-types/ --noemit --watch",
"validate": "kcd-scripts validate build,lint,test",
"setup": "npm install && npm run validate -s",
"precommit": "kcd-scripts precommit",
"dtslint": "dtslint typings"
},
"husky": {
Expand All @@ -48,17 +47,17 @@
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.4.5",
"@testing-library/dom": "^5.6.0"
"@babel/runtime": "^7.5.5",
"@testing-library/dom": "^6.0.0"
},
"devDependencies": {
"@types/jquery": "*",
"cypress": "3.4.0",
"dtslint": "^0.7.1",
"kcd-scripts": "^1.2.2",
"cypress": "3.4.1",
"dtslint": "^0.9.1",
"kcd-scripts": "^1.5.2",
"npm-run-all": "^4.1.2",
"serve": "^11.0.1",
"typescript": "^3.4.5",
"serve": "^11.1.0",
"typescript": "^3.5.3",
"wait-port": "^0.2.2"
},
"peerDependencies": {
Expand Down

0 comments on commit 5f282c7

Please sign in to comment.