Skip to content
This repository was archived by the owner on Jun 20, 2022. It is now read-only.

Commit 72e7aee

Browse files
authored
chore: upgrade deps (#58)
1 parent c21e33d commit 72e7aee

File tree

4 files changed

+2581
-362
lines changed

4 files changed

+2581
-362
lines changed

β€Žpackage.jsonβ€Ž

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -24,62 +24,62 @@
2424
}
2525
],
2626
"devDependencies": {
27-
"@babel/cli": "^7.0.0",
28-
"@babel/core": "^7.0.1",
27+
"@babel/cli": "^7.1.2",
28+
"@babel/core": "^7.1.2",
2929
"@babel/plugin-external-helpers": "^7.0.0",
3030
"@babel/plugin-proposal-class-properties": "^7.0.0",
3131
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
3232
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
3333
"@babel/preset-env": "^7.0.0",
3434
"@babel/preset-react": "^7.0.0",
3535
"babel-core": "^7.0.0-0",
36-
"babel-eslint": "^10.0.0",
36+
"babel-eslint": "^10.0.1",
3737
"babel-jest": "^23.6.0",
38-
"babel-loader": "^8.0.2",
38+
"babel-loader": "^8.0.4",
3939
"babel-plugin-annotate-pure-calls": "^0.4.0",
40-
"babel-plugin-emotion": "^9.2.9",
41-
"babel-plugin-styled-components": "^1.7.1",
40+
"babel-plugin-emotion": "^9.2.11",
41+
"babel-plugin-styled-components": "^1.8.0",
4242
"babel-plugin-transform-rename-import": "^2.3.0",
4343
"bundlesize": "^0.17.0",
4444
"conventional-github-releaser": "^3.1.2",
4545
"conventional-recommended-bump": "^4.0.1",
4646
"cross-env": "^5.2.0",
47-
"docz": "^0.11.2",
48-
"emotion": "^9.2.9",
47+
"docz": "^0.12.5",
48+
"emotion": "^9.2.12",
4949
"emotion-theming": "^9.2.9",
50-
"enzyme": "^3.6.0",
51-
"enzyme-adapter-react-16": "^1.5.0",
52-
"eslint": "^5.6.0",
50+
"enzyme": "^3.7.0",
51+
"enzyme-adapter-react-16": "^1.6.0",
52+
"eslint": "^5.7.0",
5353
"eslint-config-airbnb": "^17.1.0",
5454
"eslint-config-prettier": "^3.0.1",
5555
"eslint-plugin-import": "^2.14.0",
56-
"eslint-plugin-jsx-a11y": "^6.1.1",
56+
"eslint-plugin-jsx-a11y": "^6.1.2",
5757
"eslint-plugin-react": "^7.11.1",
5858
"favicons-webpack-plugin": "^0.0.9",
5959
"jest": "^23.6.0",
6060
"jest-styled-components": "^6.2.0",
61-
"lerna": "^3.4.0",
61+
"lerna": "^3.4.3",
6262
"react": "^16.5.1",
6363
"react-dom": "^16.5.1",
64-
"react-emotion": "^9.2.9",
64+
"react-emotion": "^9.2.12",
6565
"react-test-renderer": "^16.5.1",
6666
"remark-external-links": "^3.0.0",
67-
"rollup": "^0.66.0",
67+
"rollup": "^0.66.6",
6868
"rollup-plugin-babel": "^4.0.3",
69-
"rollup-plugin-commonjs": "^9.1.6",
69+
"rollup-plugin-commonjs": "^9.2.0",
7070
"rollup-plugin-node-resolve": "^3.4.0",
71-
"rollup-plugin-replace": "^2.0.0",
71+
"rollup-plugin-replace": "^2.1.0",
7272
"rollup-plugin-uglify": "^6.0.0",
7373
"shx": "^0.3.2",
7474
"standard-version": "^4.4.0",
75-
"styled-components": "^3.4.6",
75+
"styled-components": "^3.4.10",
7676
"uglifyjs-webpack-plugin": "^2.0.0",
7777
"webpack": "^4.19.0"
7878
},
7979
"dependencies": {
8080
"classnames": "^2.2.6",
81-
"polished": "^2.0.3",
81+
"polished": "^2.2.0",
8282
"prop-types": "^15.6.2",
83-
"react-transition-group": "^2.4.0"
83+
"react-transition-group": "^2.5.0"
8484
}
8585
}

β€Žpackages/core-em/package.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
},
2828
"dependencies": {
2929
"classnames": "^2.2.6",
30-
"polished": "^2.0.3",
30+
"polished": "^2.2.0",
3131
"prop-types": "^15.6.2",
32-
"react-transition-group": "^2.4.0"
32+
"react-transition-group": "^2.5.0"
3333
},
3434
"peerDependencies": {
3535
"emotion-theming": "^9.0.0",

β€Žpackages/core-sc/package.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
},
2727
"dependencies": {
2828
"classnames": "^2.2.6",
29-
"polished": "^2.0.3",
29+
"polished": "^2.2.0",
3030
"prop-types": "^15.6.2",
31-
"react-transition-group": "^2.4.0"
31+
"react-transition-group": "^2.5.0"
3232
},
3333
"peerDependencies": {
3434
"react": ">=16.3.0",

0 commit comments

Comments
Β (0)