Sha256: d2a963fa3bbdd6cc76ad9ed239c7462a7bd27f0da0457234933efdac6d7b6eb2
Contents?: true
Size: 709 Bytes
Versions: 14
Compression:
Stored size: 709 Bytes
Contents
// ./node_modules/.bin/webpack --config config/webpack.config.js var path = require('path'); var webpack = require('webpack'); module.exports = { entry: { admin: './app/webpack/javascripts/admin.es6' }, output: { path: path.join(__dirname, '..', 'app', 'assets', 'javascripts', 'push_type', 'webpack'), publicPath: '/webpack/', filename: '[name].bundle.js' }, resolve: { root: path.join(__dirname, '..', 'app', 'webpack') }, module: { loaders: [ { test: /\.es6$/, loader: 'babel', query: { presets: ['es2015'] } }, { test: /\.vue$/, loader: 'vue' } ] }, plugins: [ new webpack.IgnorePlugin(/unicode\/category\/So$/) ] };
Version data entries
14 entries across 14 versions & 1 rubygems