Skip to content

Commit 5f282c7

Browse files
author
Kent C. Dodds
committed
feat: upgrade all deps
1 parent b23e390 commit 5f282c7

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

lint-staged.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const config = require('kcd-scripts/dist/config/lintstagedrc')
22

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

package.json

+7-8
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"test:typings:watch": "tsc -p tests/typescript-types/ --noemit --watch",
2323
"validate": "kcd-scripts validate build,lint,test",
2424
"setup": "npm install && npm run validate -s",
25-
"precommit": "kcd-scripts precommit",
2625
"dtslint": "dtslint typings"
2726
},
2827
"husky": {
@@ -48,17 +47,17 @@
4847
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
4948
"license": "MIT",
5049
"dependencies": {
51-
"@babel/runtime": "^7.4.5",
52-
"@testing-library/dom": "^5.6.0"
50+
"@babel/runtime": "^7.5.5",
51+
"@testing-library/dom": "^6.0.0"
5352
},
5453
"devDependencies": {
5554
"@types/jquery": "*",
56-
"cypress": "3.4.0",
57-
"dtslint": "^0.7.1",
58-
"kcd-scripts": "^1.2.2",
55+
"cypress": "3.4.1",
56+
"dtslint": "^0.9.1",
57+
"kcd-scripts": "^1.5.2",
5958
"npm-run-all": "^4.1.2",
60-
"serve": "^11.0.1",
61-
"typescript": "^3.4.5",
59+
"serve": "^11.1.0",
60+
"typescript": "^3.5.3",
6261
"wait-port": "^0.2.2"
6362
},
6463
"peerDependencies": {

0 commit comments

Comments
 (0)