CSScomb loader for webpack
npm install csscomb-loader> Format CSS coding style with CSScomb and Webpack.
*If you have any difficulties with the output of this plugin, please use the
CSScomb tracker.*

``sh`
npm install csscomb-loader --save-dev
Option 1: Via command line:
`shell`
webpack ./src/app.js ./build/app.js --module-bind 'css=style!css!csscomb'
Option 2: Configuration file:
`js``
module.exports = {
entry: './src/app.js',
output: {
filename: 'app.js',
path: './build'
},
module: {
loaders: [
{ test: /\.css$/, loader: 'style!css!csscomb' }
]
}
};