57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
var path = require('path');
|
|
var pkg = require('./package.json');
|
|
var webpack = require('webpack');
|
|
var wrapperPlugin = require('wrapper-webpack-plugin');
|
|
var banner = `/*! ${ pkg.name } v${ pkg.version } | (c) ${ new Date().getFullYear() } ${ pkg.author } | ${ pkg.homepage } */ \n`;
|
|
var minimize = process.argv.indexOf('--minimize') !== -1;
|
|
|
|
var config = {
|
|
devtool: 'cheap-module-source-map',
|
|
entry: [
|
|
'./assets/scripts/src/choices'
|
|
],
|
|
output: {
|
|
path: path.join(__dirname, '/assets/scripts/dist'),
|
|
filename: minimize ? 'choices.min.js' : 'choices.js',
|
|
publicPath: '/assets/scripts/dist/',
|
|
library: 'Choices',
|
|
libraryTarget: 'umd',
|
|
},
|
|
libraryTarget: 'umd',
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
// This has effect on the react lib size
|
|
'NODE_ENV': JSON.stringify('production'),
|
|
}
|
|
}),
|
|
new wrapperPlugin({
|
|
header: banner,
|
|
}),
|
|
],
|
|
module: {
|
|
loaders: [{
|
|
test: /\.js$/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
loaders: ['babel'],
|
|
include: path.join(__dirname, 'assets/scripts/src')
|
|
}]
|
|
}
|
|
};
|
|
|
|
if (minimize) {
|
|
config.plugins.unshift(new webpack.optimize.UglifyJsPlugin({
|
|
sourceMap: false,
|
|
mangle: true,
|
|
output: {
|
|
comments: false
|
|
},
|
|
compress: {
|
|
warnings: false,
|
|
screw_ie8: true
|
|
}
|
|
}));
|
|
}
|
|
|
|
module.exports = config;
|