phaser/v3/webpack.dist.config.js
photonstorm ef95209c32 Dev build now builds to examples/dev.js.
Updated dist build.
2017-07-31 14:23:28 +01:00

46 lines
974 B
JavaScript

'use strict';
const webpack = require('webpack');
const WebpackShellPlugin = require('webpack-shell-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
module.exports = {
context: `${__dirname}/src/`,
entry: {
phaser: './phaser.js',
'phaser.min': './phaser.js'
},
output: {
path: `${__dirname}/dist/`,
filename: '[name].js',
library: 'Phaser',
libraryTarget: 'umd',
umdNamedDefine: true
},
plugins: [
new UglifyJSPlugin({
include: /\.min\.js$/,
parallel: true,
sourceMap: true,
compress: true,
comments: false,
uglifyOptions: {
ie8: false,
ecma: 5,
warnings: false
},
warningsFilter: (src) => false
}),
new WebpackShellPlugin({
onBuildStart: 'node create-checksum.js'
})
]
};