UNPKG

happypack

Version:

webpack speed booster, makes you happy!

20 lines (17 loc) 485 B
var path = require('path'); var HappyPack = require('../../'); module.exports = { entry: path.resolve(__dirname, 'lib/index.scss'), output: { path: path.resolve(__dirname, 'dist'), filename: '[name].raw.js' }, module: { loaders: [ { test: /\.scss$/, loader: 'style!css?modules&importLoaders=2&sourceMap&localIdentName=[local]___[hash:base64:5]!autoprefixer?browsers=last 2 version!sass?outputStyle=expanded&sourceMap&', } ] } };