Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 5c096dd

Browse files
author
george
committed
update dependencies
1 parent 9dc5d98 commit 5c096dd

File tree

3 files changed

+628
-538
lines changed

3 files changed

+628
-538
lines changed

package.json

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -40,46 +40,46 @@
4040
"postversion": "npm run update-version && npm test -- -u && npm run build:dist:release && git add -A && git commit --amend"
4141
},
4242
"devDependencies": {
43-
"@babel/cli": "^7.4.3",
44-
"@babel/core": "^7.4.3",
43+
"@babel/cli": "^7.4.4",
44+
"@babel/core": "^7.4.5",
4545
"@babel/plugin-external-helpers": "^7.2.0",
46-
"@babel/plugin-proposal-class-properties": "^7.4.0",
46+
"@babel/plugin-proposal-class-properties": "^7.4.4",
4747
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
48-
"@babel/preset-env": "^7.4.3",
48+
"@babel/preset-env": "^7.4.5",
4949
"@babel/preset-react": "^7.0.0",
50-
"@babel/register": "^7.4.0",
50+
"@babel/register": "^7.4.4",
5151
"autoprefixer": "^9.5.0",
5252
"babel-eslint": "^10.0.1",
53-
"babel-jest": "^24.7.1",
53+
"babel-jest": "^24.8.0",
5454
"babel-loader": "^8.0.5",
5555
"babel-plugin-dynamic-import-node": "^2.2.0",
5656
"babel-plugin-webpack-aliases": "^1.1.3",
5757
"classnames": "^2.2.6",
58-
"clean-webpack-plugin": "^2.0.1",
59-
"compression-webpack-plugin": "^2.0.0",
58+
"clean-webpack-plugin": "^3.0.0",
59+
"compression-webpack-plugin": "^3.0.0",
6060
"copy-webpack-plugin": "^5.0.0",
61-
"core-js": "^3.0.1",
62-
"css-loader": "^2.1.0",
63-
"enzyme": "^3.9.0",
64-
"enzyme-adapter-react-16": "^1.11.2",
61+
"core-js": "^3.1.4",
62+
"css-loader": "^3.0.0",
63+
"enzyme": "^3.10.0",
64+
"enzyme-adapter-react-16": "^1.14.0",
6565
"enzyme-to-json": "^3.3.5",
66-
"eslint": "^5.15.3",
67-
"eslint-config-prettier": "^4.1.0",
68-
"eslint-plugin-jsx-a11y": "^6.2.1",
69-
"eslint-plugin-react": "^7.12.4",
70-
"file-loader": "^3.0.1",
66+
"eslint": "^6.0.1",
67+
"eslint-config-prettier": "^6.0.0",
68+
"eslint-plugin-jsx-a11y": "^6.2.2",
69+
"eslint-plugin-react": "^7.14.2",
70+
"file-loader": "^4.0.0",
7171
"html-loader": "^0.5.5",
7272
"html-webpack-plugin": "^3.2.0",
7373
"jest": "^24.7.1",
7474
"jshashes": "^1.0.7",
7575
"lodash": "^4.17.11",
76-
"lottie-web": "^5.4.4",
76+
"lottie-web": "^5.5.5",
7777
"markdown-loader": "^5.0.0",
78-
"mini-css-extract-plugin": "^0.6.0",
78+
"mini-css-extract-plugin": "^0.7.0",
7979
"node-sass": "^4.12.0",
8080
"optimize-css-assets-webpack-plugin": "^5.0.1",
8181
"postcss-loader": "^3.0.0",
82-
"prettier": "^1.16.4",
82+
"prettier": "^1.18.2",
8383
"prismjs": "^1.15.0",
8484
"prop-types": "^15.7.2",
8585
"react": "^16.8.6",
@@ -89,20 +89,19 @@
8989
"react-loadable": "^5.5.0",
9090
"react-markdown": "^4.0.6",
9191
"react-router-dom": "^5.0.0",
92-
"react-router-last-location": "^2.0.0-beta.1",
92+
"react-router-last-location": "^2.0.0-beta.3",
9393
"react-spinners": "^0.5.1",
94-
"resolve-url-loader": "^3.0.1",
95-
"rollup": "^1.10.0",
94+
"rollup": "^1.16.3",
9695
"rollup-plugin-babel": "^4.3.2",
97-
"rollup-plugin-node-resolve": "^4.2.3",
96+
"rollup-plugin-node-resolve": "^5.2.0",
9897
"rollup-plugin-uglify": "^6.0.2",
9998
"sass-loader": "^7.1.0",
10099
"style-loader": "^0.23.1",
101-
"uglify-js": "^3.4.9",
100+
"uglify-js": "^3.6.0",
102101
"uglifyjs-webpack-plugin": "^2.1.2",
103-
"webpack": "^4.30.0",
102+
"webpack": "^4.35.0",
104103
"webpack-cli": "^3.3.0",
105-
"webpack-dev-server": "^3.3.1",
104+
"webpack-dev-server": "^3.7.2",
106105
"webpack-merge": "^4.2.1"
107106
},
108107
"engines": {

webpack.common.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,14 @@ module.exports = {
3737
test: /\.s?css$/,
3838
use: [
3939
MiniCssExtractPlugin.loader,
40-
"css-loader",
40+
{
41+
loader: "css-loader",
42+
options: { importLoaders: 2 },
43+
},
4144
{
4245
loader: "postcss-loader",
4346
options: { config: { path: "config/postcss.config.js" } },
4447
},
45-
"resolve-url-loader",
4648
"sass-loader?sourceMap",
4749
],
4850
},

0 commit comments

Comments
 (0)