csscomb-loader
v0.0.2
Published
CSScomb loader for webpack
Maintainers
Readme
CSScomb Loader for Webpack
If you have any difficulties with the output of this plugin, please use the CSScomb tracker.
How to Install
npm install csscomb-loader --save-devHow to Use
Option 1: Via command line:
webpack ./src/app.js ./build/app.js --module-bind 'css=style!css!csscomb'Option 2: Configuration file:
module.exports = {
entry: './src/app.js',
output: {
filename: 'app.js',
path: './build'
},
module: {
loaders: [
{ test: /\.css$/, loader: 'style!css!csscomb' }
]
}
};
