Sha256: 354da70e21ed36a9fab1907363cbf8eb7f90305354bf1e604ea2327abbe1be8e

Contents?: true

Size: 448 Bytes

Versions: 5

Compression:

Stored size: 448 Bytes

Contents

'use strict';

var path = require('path');
var webpack = require('webpack');

module.exports = {
  entry: [
    './frontend/javascripts/main.js'
  ],
  output: {
    path: path.resolve('./public/assets/javascripts'),
    publicPath: '/assets/javascripts',
    filename: '[name].js'
  },
  module: {
    loaders: [
      {
        test: /\.jsx?$/,
        exclude: /(node_modules|bower_components)/,
        loaders: ['babel']
      }
    ]
  }
};

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gulp_assets-1.0.0.pre.6 template/webpack.common.config.js
gulp_assets-1.0.0.pre.5 template/webpack.common.config.js
gulp_assets-1.0.0.pre.4 template/webpack.common.config.js
gulp_assets-1.0.0.pre.3 template/webpack.common.config.js
gulp_assets-1.0.0.pre.2 template/webpack.common.config.js