phaser/v3/webpack.config.js

30 lines
484 B
JavaScript
Raw Normal View History

2016-11-22 16:25:54 +00:00
'use strict';
const webpack = require('webpack');
const WebpackShellPlugin = require('webpack-shell-plugin');
2016-11-22 16:25:54 +00:00
2016-11-22 03:32:41 +00:00
module.exports = {
2016-11-22 16:25:54 +00:00
context: './src',
2016-11-22 16:25:54 +00:00
entry: {
phaser: './phaser.js'
},
2016-11-22 03:32:41 +00:00
output: {
path: './dist',
2016-11-22 16:25:54 +00:00
filename: '[name].js',
library: 'Phaser'
2016-11-22 16:25:54 +00:00
},
plugins: [
2016-11-22 16:25:54 +00:00
new WebpackShellPlugin({
onBuildStart: 'node create-checksum.js',
onBuildEnd: 'node copy-to-examples.js'
})
]
2016-11-22 03:32:41 +00:00
};