0.0.3 • Published 7 years ago

gussy-loader v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

gussy loader for webpack

Example configuration

Using extract-text-webpack-plugin to output resulting CSS into styles.css:

{
  plugins: [new ExtractTextPlugin('styles.css', { allChunks: true })],
  module: {
    loaders: [{
      test: /\.js$/,
      loader: ExtractTextPlugin.extract(['css', 'gussy-loader?outputStyle=compact']),
      include: path.join(__dirname, './src/style/'),
    }]
  }
}