phaser/webpack.dist.config.js
2018-01-09 21:50:47 +00:00

53 lines
1.2 KiB
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 webpack.DefinePlugin({
'CANVAS_RENDERER': JSON.stringify(true),
'WEBGL_RENDERER': JSON.stringify(true)
}),
new UglifyJSPlugin({
include: /\.min\.js$/,
parallel: true,
sourceMap: false,
uglifyOptions: {
compress: true,
ie8: false,
ecma: 5,
output: {
comments: false
},
warnings: false
},
warningsFilter: (src) => false
}),
new WebpackShellPlugin({
onBuildStart: 'node create-checksum.js'
})
]
};