mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
94 lines
2.5 KiB
JavaScript
94 lines
2.5 KiB
JavaScript
'use strict';
|
|
|
|
const webpack = require('webpack');
|
|
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
|
|
const exec = require('child_process').exec;
|
|
const RemovePlugin = require('remove-files-webpack-plugin');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
|
|
context: `${__dirname}/src/`,
|
|
|
|
entry: {
|
|
'SpinePlugin': './SpinePlugin.js',
|
|
'SpinePlugin.min': './SpinePlugin.js'
|
|
},
|
|
|
|
output: {
|
|
path: `${__dirname}/dist/`,
|
|
filename: '[name].js',
|
|
library: 'SpinePlugin',
|
|
libraryTarget: 'window'
|
|
},
|
|
|
|
performance: { hints: false },
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: require.resolve('./src/runtimes/spine-both.js'),
|
|
loader: 'imports-loader',
|
|
options: {
|
|
type: 'commonjs',
|
|
wrapper: 'window'
|
|
}
|
|
},
|
|
{
|
|
test: require.resolve('./src/runtimes/spine-both.js'),
|
|
loader: 'exports-loader',
|
|
options: {
|
|
type: 'commonjs',
|
|
exports: 'single spine'
|
|
}
|
|
}
|
|
]
|
|
},
|
|
|
|
resolve: {
|
|
alias: {
|
|
'Spine': './runtimes/spine-both.js'
|
|
},
|
|
},
|
|
|
|
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 RemovePlugin({
|
|
before: {
|
|
root: './plugins/spine/dist/',
|
|
include: [ 'SpinePlugin.js', 'SpinePlugin.min.js' ]
|
|
}
|
|
}),
|
|
{
|
|
apply: (compiler) => {
|
|
compiler.hooks.afterEmit.tap('AfterEmitPlugin', (compilation) => {
|
|
exec('node plugins/spine/copy-to-examples.js', (err, stdout, stderr) => {
|
|
if (stdout) process.stdout.write(stdout);
|
|
if (stderr) process.stderr.write(stderr);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
]
|
|
};
|