Remove unnecessary build dependency

This commit is contained in:
Nicolas Gallagher
2015-06-11 18:01:18 -07:00
parent 5de76f6d1c
commit cb0244ea72
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -23,7 +23,6 @@
"extract-text-webpack-plugin": "^0.8.1",
"node-libs-browser": "^0.5.2",
"postcss-loader": "^0.4.4",
"postcss-modules-local-by-default": "0.0.7",
"style-loader": "^0.12.3",
"webpack": "^1.9.10"
},
+2 -2
View File
@@ -9,7 +9,7 @@ module.exports = {
test: /\.css$/,
loader: ExtractTextPlugin.extract(
'style-loader',
'css-loader?localIdentName=[hash:base64:5]!postcss-loader'
'css-loader?module&localIdentName=[hash:base64:5]!postcss-loader'
)
},
{
@@ -23,5 +23,5 @@ module.exports = {
plugins: [
new ExtractTextPlugin('react-web-sdk.css')
],
postcss: [ autoprefixer, localcss ]
postcss: [ autoprefixer ]
};