Skip to content

Commit f3ddb91

Browse files
committed
Downgrade css-loader dependency to 0.15.5
1 parent 095529b commit f3ddb91

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"bower": "^1.3.12",
1717
"classnames": "^2.1.2",
1818
"codemirror": "^5.3.0",
19-
"css-loader": "^0.15.1",
19+
"css-loader": "^0.14.5",
2020
"extract-text-webpack-plugin": "^0.8.2",
2121
"file-loader": "^0.8.4",
2222
"flux": "^2.0.3",

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ module.exports = {
8181
module: {
8282
loaders: [
8383
{ test: /\.js$/, loaders: ['react-hot', 'babel?stage=1&optional[]=runtime'], exclude: /node_modules/ },
84-
{ test: /\.css$/, loader: ExtractTextPlugin.extract('css?sourceMap') },
85-
{ test: /\.scss$/, loader: ExtractTextPlugin.extract('css!sass?sourceMap') },
84+
{ test: /\.css$/, loader: ExtractTextPlugin.extract('css') },
85+
{ test: /\.scss$/, loader: ExtractTextPlugin.extract('css!sass') },
8686
{ test: /\.jpe?g$|\.gif$|\.png$|\.svg$|\.woff2?$|\.ttf|\.eot$/, loader: 'url' }
8787
]
8888
},

0 commit comments

Comments
 (0)