-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
133 lines (126 loc) · 3.87 KB
/
Gruntfile.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Generated on 2014-03-28 using generator-phaser-official 0.0.8-rc-2
'use strict';
var config = require('./config.json');
var _ = require('underscore');
_.str = require('underscore.string');
// Mix in non-conflict functions to Underscore namespace if you want
_.mixin(_.str.exports());
var LIVERELOAD_PORT = 35729;
var lrSnippet = require('connect-livereload')({port: LIVERELOAD_PORT});
var mountFolder = function (connect, dir) {
return connect.static(require('path').resolve(dir));
};
module.exports = function (grunt) {
// load all grunt tasks
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
grunt.initConfig({
watch: {
scripts: {
files: [
'css/*.css',
'game/**/*.js',
'!game/main.js',
'index.html'
],
options: {
spawn: false,
livereload: LIVERELOAD_PORT
},
tasks: ['build']
}
},
connect: {
options: {
port: 9000,
// change this to '0.0.0.0' to access the server from outside
hostname: '0.0.0.0' //'localhost'
},
livereload: {
options: {
middleware: function (connect) {
return [
lrSnippet,
mountFolder(connect, 'dist')
];
}
}
}
},
open: {
server: {
path: 'http://localhost:9000'
}
},
clean: {
game: [
'dist/js/game.js'
],
dist: [
'dist/*'
]
},
copy: {
dist: {
files: [
// includes files within path and its sub-directories
{ expand: true, src: ['assets/*.png', 'assets/*.gif', 'assets/*.jpg'], dest: 'dist/' },
{ expand: true, src: ['assets/sfx/*.ogg', 'assets/sfx/*.m4a', 'assets/sfx/*.mp3'], dest: 'dist/' },
{ expand: true, flatten: true, src: ['game/plugins/*.js'], dest: 'dist/js/plugins/' },
{ expand: true, flatten: true, src: ['bower_components/phaser-official/build/phaser.min.js'], dest: 'dist/js/' },
{ expand: true, flatten: true, src: ['bower_components/lodash/dist/lodash.min.js'], dest: 'dist/js/' },
{ expand: true, flatten: true, src: ['LICENSE'], dest: 'dist/' },
{ expand: true, src: ['css/**'], dest: 'dist/' },
{ expand: true, src: ['index.html'], dest: 'dist/' }
]
}
},
browserify: {
build: {
// options: {
// ignore: ['lodash']
// },
src: ['game/main.js'],
dest: 'dist/js/game.js'
}
},
uglify: {
dist: {
options: {
report: 'min',
preserveComments: false,
banner: '<%= grunt.file.read("templates/header.txt") %>'
},
files: {
'dist/js/game.min.js': ['dist/js/game.js']
}
}
},
processhtml: {
dist: {
files: {
'dist/index.html': ['index.html']
}
}
}
});
grunt.registerTask('build', ['buildBootstrapper', 'browserify','copy']);
grunt.registerTask('serve', ['build', 'connect:livereload', 'open', 'watch']);
grunt.registerTask('default', ['serve']);
grunt.registerTask('prod', ['build', 'uglify', 'processhtml', 'clean:game']);
grunt.registerTask('buildBootstrapper', 'builds the bootstrapper file correctly', function() {
var stateFiles = grunt.file.expand('game/states/*.js');
var gameStates = [];
var statePattern = new RegExp(/(\w+).js$/);
stateFiles.forEach(function(file) {
var state = file.match(statePattern)[1];
if (!!state) {
gameStates.push({shortName: state, stateName: _.capitalize(state) + 'State'});
}
});
config.gameStates = gameStates;
console.log(config);
var bootstrapper = grunt.file.read('templates/_main.js.tpl');
bootstrapper = grunt.template.process(bootstrapper,{data: config});
grunt.file.write('game/main.js', bootstrapper);
});
};