Skip to content

Commit

Permalink
[security] Fix npm deps (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
zmbush authored Oct 3, 2019
1 parent bfdc3a6 commit 200badc
Show file tree
Hide file tree
Showing 3 changed files with 306 additions and 1,040 deletions.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"babel-plugin-flow-react-proptypes": "^25.1.0",
"babel-polyfill": "^6.23.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"css-loader": "^3.2.0",
"css-modules-typescript-loader": "^3.0.1",
"d3-scale": "^1.0.6",
"d3-scale-chromatic": "^1.5.0",
"eslint": "^4.10.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
Expand All @@ -53,14 +53,13 @@
"normalize.css": "^7.0.0",
"prop-types": "^15.5.8",
"prop-types-exact": "^1.1.1",
"re-base": "^2.7.0",
"react": "^16.0.0",
"react-d3": "^0.4.0",
"react-dom": "^16.0.0",
"react-router-dom": "^4.0.0",
"react-tap-event-plugin": "^2.0.1",
"recharts": "^1.0.0-beta.1",
"sass-loader": "^6.0.3",
"sass-loader": "^8.0.0",
"serviceworker-webpack-plugin": "^0.2.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.16.1",
Expand Down
7 changes: 4 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@ module.exports = {
},
{
loader: "css-loader",
query: {
modules: true,
localIdentName: "[path][name]_[local]--[hash:base64:5]"
options: {
modules: {
localIdentRegExp: "[path][name]_[local]--[hash:base64:5]"
}
}
},
{
Expand Down
Loading

0 comments on commit 200badc

Please sign in to comment.