Skip to content

Commit

Permalink
update some more dependencies (#956)
Browse files Browse the repository at this point in the history
* update some more dependencies

* Fix sass options.
  • Loading branch information
Oliver Ponder committed Jan 8, 2020
1 parent 561bf0e commit 21641d8
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 76 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"react-dom": "16.12.0",
"react-gravatar": "2.6.3",
"react-markdown": "^4.1.0",
"react-redux": "6.0.1",
"react-redux": "7.1.3",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"react-test-renderer": "^16.12.0",
Expand Down Expand Up @@ -125,10 +125,10 @@
"pretty-quick": "^2.0.1",
"react-hot-loader": "^4.12.0",
"redux-immutable-state-invariant": "2.1.0",
"sass-loader": "7.3.1",
"sass-loader": "8.0.0",
"style-loader": "1.1.2",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint": "^12.0.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"url-loader": "3.0.0",
Expand Down
13 changes: 12 additions & 1 deletion webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,18 @@ module.exports = {
},
{
test: /\.sass$/,
loader: 'style-loader!css-loader!sass-loader?outputStyle=expanded',
use: [
'style-loader',
'css-loader',
{
loader: 'sass-loader',
options: {
sassOptions: {
outputStyle: 'expanded',
},
},
},
],
},
{
test: /\.(png|jpg)$/,
Expand Down
Loading

0 comments on commit 21641d8

Please sign in to comment.