-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
57 lines (55 loc) · 1.51 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
var path = require('path')
var webpack = require('webpack')
var HtmlWebpackPlugin = require('html-webpack-plugin');
// Phaser webpack config
var phaserModule = path.join(__dirname, '/node_modules/phaser/')
var phaser = path.join(phaserModule, 'build/custom/phaser-split.js')
var pixi = path.join(phaserModule, 'build/custom/pixi.js')
var p2 = path.join(phaserModule, 'build/custom/p2.js')
module.exports = {
entry: {
app: [
'webpack-hot-middleware/client?reload=true',
path.resolve(__dirname, 'src/main.js')
]
},
devtool: 'cheap-source-map',
output: {
path: path.join(__dirname, '/dist/'),
filename: '[name].js',
publicPath: '/'
},
watch: true,
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.tpl.html',
inject: 'body',
filename: 'index.html'
}),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({
__DEV__: JSON.stringify(JSON.parse(process.env.BUILD_DEV || 'true'))
})
],
module: {
loaders: [
{ test: /\.js$/, loader: 'babel', include: path.join(__dirname, 'src') },
{ test: /pixi\.js/, loader: 'expose?PIXI' },
{ test: /phaser-split\.js$/, loader: 'expose?Phaser' },
{ test: /p2\.js/, loader: 'expose?p2' },
{ test: /\.(jpe?g|png|gif|svg)$/i, loader: "file-loader" }
]
},
node: {
fs: 'empty'
},
resolve: {
alias: {
'phaser': phaser,
'pixi': pixi,
'p2': p2
}
}
}