mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 15:14:47 +00:00
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const webpack = require('webpack');
|
|
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
|
|
const CleanWebpackPlugin = require('clean-webpack-plugin');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
|
|
context: `${__dirname}/src/`,
|
|
|
|
entry: {
|
|
phaser: './phaser.js',
|
|
'phaser.min': './phaser.js',
|
|
'phaser-arcade-physics': './phaser-arcade-physics.js',
|
|
'phaser-arcade-physics.min': './phaser-arcade-physics.js',
|
|
'phaser-core': './phaser-core.js',
|
|
'phaser-core.min': './phaser-core.js'
|
|
},
|
|
|
|
output: {
|
|
path: `${__dirname}/dist/`,
|
|
filename: '[name].js',
|
|
library: 'Phaser',
|
|
libraryTarget: 'umd',
|
|
umdNamedDefine: true
|
|
},
|
|
|
|
performance: { hints: false },
|
|
|
|
optimization: {
|
|
minimizer: [
|
|
new UglifyJSPlugin({
|
|
include: /\.min\.js$/,
|
|
parallel: true,
|
|
sourceMap: false,
|
|
uglifyOptions: {
|
|
compress: true,
|
|
ie8: false,
|
|
ecma: 5,
|
|
output: {comments: false},
|
|
warnings: false
|
|
},
|
|
warningsFilter: () => false
|
|
})
|
|
]
|
|
},
|
|
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
"typeof CANVAS_RENDERER": JSON.stringify(true),
|
|
"typeof WEBGL_RENDERER": JSON.stringify(true)
|
|
}),
|
|
|
|
new CleanWebpackPlugin([ 'dist' ])
|
|
]
|
|
};
|