mirror of
https://github.com/photonstorm/phaser
synced 2024-12-17 16:43:30 +00:00
Merge branch 'master' into rendering-cleanup
This commit is contained in:
commit
aec93871c7
2 changed files with 10 additions and 0 deletions
|
@ -38,6 +38,7 @@
|
|||
"eslint": "^4.13.1",
|
||||
"fs-extra": "^5.0.0",
|
||||
"node-sloc": "^0.1.10",
|
||||
"raw-loader": "^0.5.1",
|
||||
"uglifyjs-webpack-plugin": "^1.1.2",
|
||||
"uuid": "^3.1.0",
|
||||
"webpack": "^3.10.0",
|
||||
|
|
|
@ -22,6 +22,15 @@ module.exports = {
|
|||
umdNamedDefine: true,
|
||||
},
|
||||
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: [ /\.vert$/, /\.frag$/ ],
|
||||
use: 'raw-loader'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
plugins: [
|
||||
|
||||
new webpack.DefinePlugin({
|
||||
|
|
Loading…
Reference in a new issue