2017-07-31 10:48:34 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const webpack = require('webpack');
|
2017-09-13 16:09:16 +00:00
|
|
|
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
|
2018-02-13 03:42:57 +00:00
|
|
|
const CleanWebpackPlugin = require('clean-webpack-plugin');
|
2017-07-31 10:48:34 +00:00
|
|
|
|
|
|
|
module.exports = {
|
2018-03-20 12:24:42 +00:00
|
|
|
mode: 'production',
|
2017-07-31 10:48:34 +00:00
|
|
|
|
|
|
|
context: `${__dirname}/src/`,
|
|
|
|
|
|
|
|
entry: {
|
2018-03-20 12:24:42 +00:00
|
|
|
phaser: './phaser.js',
|
2018-02-13 03:23:52 +00:00
|
|
|
'phaser.min': './phaser.js',
|
|
|
|
'phaser-arcade-physics': './phaser-arcade-physics.js',
|
|
|
|
'phaser-arcade-physics.min': './phaser-arcade-physics.js'
|
2017-07-31 10:48:34 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
output: {
|
|
|
|
path: `${__dirname}/dist/`,
|
|
|
|
filename: '[name].js',
|
|
|
|
library: 'Phaser',
|
|
|
|
libraryTarget: 'umd',
|
|
|
|
umdNamedDefine: true
|
|
|
|
},
|
|
|
|
|
2018-01-30 13:30:40 +00:00
|
|
|
module: {
|
|
|
|
rules: [
|
2018-03-20 12:24:42 +00:00
|
|
|
{
|
|
|
|
test: [ /\.vert$/, /\.frag$/ ],
|
|
|
|
use: 'raw-loader'
|
|
|
|
}
|
2018-01-30 13:30:40 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2018-03-20 12:24:42 +00:00
|
|
|
optimization: {minimize: false},
|
2017-07-31 10:48:34 +00:00
|
|
|
|
2018-03-20 12:24:42 +00:00
|
|
|
plugins: [
|
2017-09-13 16:09:16 +00:00
|
|
|
new webpack.DefinePlugin({
|
2018-03-20 12:24:42 +00:00
|
|
|
CANVAS_RENDERER: JSON.stringify(true),
|
|
|
|
WEBGL_RENDERER: JSON.stringify(true)
|
2017-09-13 16:09:16 +00:00
|
|
|
}),
|
|
|
|
|
2018-03-20 12:24:42 +00:00
|
|
|
new CleanWebpackPlugin([ 'dist' ]),
|
2018-02-13 03:42:57 +00:00
|
|
|
|
2017-07-31 10:48:34 +00:00
|
|
|
new UglifyJSPlugin({
|
2017-07-31 13:23:28 +00:00
|
|
|
include: /\.min\.js$/,
|
2017-07-31 10:48:34 +00:00
|
|
|
parallel: true,
|
2017-09-13 16:09:16 +00:00
|
|
|
sourceMap: false,
|
2017-07-31 10:48:34 +00:00
|
|
|
uglifyOptions: {
|
2017-02-12 14:49:58 +00:00
|
|
|
compress: true,
|
2017-07-31 10:48:34 +00:00
|
|
|
ie8: false,
|
|
|
|
ecma: 5,
|
2018-03-20 12:24:42 +00:00
|
|
|
output: {comments: false},
|
2017-07-31 10:48:34 +00:00
|
|
|
warnings: false
|
|
|
|
},
|
2018-03-20 12:24:42 +00:00
|
|
|
warningsFilter: () => false
|
2017-07-31 10:48:34 +00:00
|
|
|
})
|
|
|
|
]
|
|
|
|
};
|