Skip to content

Commit a09a170

Browse files
renovate[bot]Austin Green
authored andcommitted
chore(deps): update all development non-major dependencies (#382)
1 parent 8741a2b commit a09a170

File tree

5 files changed

+317
-103
lines changed

5 files changed

+317
-103
lines changed

.lintstagedrc

Lines changed: 0 additions & 28 deletions
This file was deleted.

lint-staged.config.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/**
2+
* Copyright Zendesk, Inc.
3+
*
4+
* Use of this source code is governed under the Apache License, Version 2.0
5+
* found at http://www.apache.org/licenses/LICENSE-2.0.
6+
*/
7+
8+
const micromatch = require('micromatch');
9+
10+
module.exports = {
11+
'*.{js, ts, tsx}': [
12+
'stylelint',
13+
'eslint',
14+
'jest --config=utils/test/jest.config.js --findRelatedTests',
15+
'prettier --write',
16+
'git add'
17+
],
18+
'*.md': files =>
19+
micromatch
20+
.not(files, '*CHANGELOG.md')
21+
.map(file => `markdownlint ${file}; prettier --write ${file}; git add ${file};`),
22+
'**/package.json': ['prettier-package-json --write', 'git add']
23+
};

package.json

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@
2626
"test:all": "jest --config=utils/test/jest.config.js"
2727
},
2828
"devDependencies": {
29-
"@babel/cli": "7.4.4",
30-
"@babel/core": "7.4.5",
31-
"@babel/plugin-proposal-class-properties": "7.4.4",
32-
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
29+
"@babel/cli": "7.5.0",
30+
"@babel/core": "7.5.0",
31+
"@babel/plugin-proposal-class-properties": "7.5.0",
32+
"@babel/plugin-proposal-object-rest-spread": "7.5.3",
3333
"@babel/plugin-transform-object-assign": "7.2.0",
3434
"@babel/polyfill": "7.4.4",
35-
"@babel/preset-env": "7.4.5",
35+
"@babel/preset-env": "7.5.3",
3636
"@babel/preset-react": "7.0.0",
3737
"@svgr/webpack": "4.3.1",
3838
"@testing-library/react": "8.0.4",
39-
"@types/classnames": "2.2.8",
39+
"@types/classnames": "2.2.9",
4040
"@types/jest": "24.0.15",
4141
"@types/prop-types": "15.7.1",
42-
"@types/react": "16.8.22",
42+
"@types/react": "16.8.23",
4343
"@types/react-dom": "16.8.4",
4444
"@types/styled-components": "4.1.16",
4545
"@types/webpack": "4.4.34",
@@ -55,7 +55,7 @@
5555
"babel-jest": "24.8.0",
5656
"babel-loader": "8.0.6",
5757
"babel-plugin-react-remove-properties": "0.3.0",
58-
"babel-plugin-styled-components": "1.10.5",
58+
"babel-plugin-styled-components": "1.10.6",
5959
"chalk": "2.4.2",
6060
"commander": "2.20.0",
6161
"core-js": "3.1.4",
@@ -66,8 +66,8 @@
6666
"enzyme-to-json": "3.3.5",
6767
"eslint": "6.0.1",
6868
"eslint-config-prettier": "6.0.0",
69-
"eslint-loader": "2.2.0",
70-
"eslint-plugin-jest": "22.7.1",
69+
"eslint-loader": "2.2.1",
70+
"eslint-plugin-jest": "22.7.2",
7171
"eslint-plugin-jsx-a11y": "6.2.3",
7272
"eslint-plugin-notice": "0.8.8",
7373
"eslint-plugin-prettier": "3.1.0",
@@ -96,6 +96,7 @@
9696
"live-server": "1.2.1",
9797
"markdown-loader": "5.0.0",
9898
"markdownlint-cli": "0.17.0",
99+
"micromatch": "4.0.2",
99100
"mini-css-extract-plugin": "0.7.0",
100101
"mockdate": "2.0.3",
101102
"node-fetch": "2.6.0",
@@ -109,20 +110,23 @@
109110
"regenerator-runtime": "0.13.2",
110111
"resolve-from": "5.0.0",
111112
"rimraf": "2.6.3",
112-
"simple-git": "1.117.0",
113+
"simple-git": "1.119.0",
113114
"styled-components": "4.3.2",
114115
"stylelint": "10.1.0",
115116
"stylelint-config-styled-components": "0.1.1",
116117
"stylelint-order": "3.0.0",
117118
"stylelint-processor-styled-components": "1.8.0",
118119
"ts-jest": "24.0.2",
119120
"ts-loader": "6.0.4",
120-
"typescript": "3.5.2",
121+
"typescript": "3.5.3",
121122
"uglifyjs-webpack-plugin": "2.1.3",
122-
"webpack": "4.35.2",
123+
"webpack": "4.35.3",
123124
"webpack-bundle-analyzer": "3.3.2",
124125
"webpack-cli": "3.3.5",
125126
"webpack-merge": "4.2.1",
126127
"webpack-node-externals": "1.7.2"
128+
},
129+
"resolutions": {
130+
"@types/react": "^16.8.23"
127131
}
128132
}

packages/tables/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@zendeskgarden/react-theming": "^6.2.0",
3737
"@zendeskgarden/svg-icons": "6.3.0",
3838
"react-beautiful-dnd": "11.0.4",
39-
"react-window": "1.8.4"
39+
"react-window": "1.8.5"
4040
},
4141
"keywords": [
4242
"components",

0 commit comments

Comments
 (0)