mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 12:43:26 +00:00
62 lines
1.3 KiB
JavaScript
62 lines
1.3 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
|
|
},
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: [ /\.vert$/, /\.frag$/ ],
|
|
use: 'raw-loader'
|
|
}
|
|
]
|
|
},
|
|
|
|
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'
|
|
})
|
|
|
|
]
|
|
|
|
};
|