From cb0244ea720f43cde1ce0d17c14b6460d23c7386 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Thu, 11 Jun 2015 18:01:18 -0700 Subject: [PATCH] Remove unnecessary build dependency --- package.json | 1 - webpack.config.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 7f8f640e..c7d3f26b 100644 --- a/package.json +++ b/package.json @@ -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" }, diff --git a/webpack.config.js b/webpack.config.js index 1c688062..760a9c1c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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 ] };