-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathGruntfile.js
89 lines (77 loc) · 1.98 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
var livereloadPort = 9090;
var lrSnippet = require('connect-livereload')({port: livereloadPort});
module.exports = function(grunt){
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
dist_dir: 'game/',
gamejs: [
'js/lib/Juicy.js',
'js/states/load.js',
'js/states/menu.js',
'js/states/play.js',
'js/prefabs/*.js',
'js/game.js',
],
concat: {
gamejs: {
src: ['<%= gamejs %>'],
dest: '<%= dist_dir %>/js/game.js'
}
},
uglify: {
gamejs: {
src: ['<%= gamejs %>'],
dest: '<%= dist_dir %>/js/game.min.js'
}
},
copy: {
main: {
files: [
{expand: true, cwd: 'assets/', src: ['**'], dest: '<%= dist_dir %>/assets/'},
{src: ['img/**'], dest: '<%= dist_dir %>/'},
{expand: true, flatten: true, src: ['js/lib/phaser.min.js'], dest: '<%= dist_dir %>/js/'},
{expand: true, src: ['index.html'], dest: 'game'}
]
}
},
watch: {
js: {
files: ['js/*.js', 'js/**/*.js'],
tasks: ['concat', 'uglify'],
options: {
livereload: livereloadPort
}
}
},
connect: {
server: {
options: {
port: 3000,
livereload: livereloadPort,
middleware: function (connect) {
return [
lrSnippet,
connect.static(require('path').resolve('game'))
];
}
}
}
},
open: {
index: {
path: 'http://localhost:3000',
app: 'chrome'
}
}
});
// Load modules
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-open');
// Taks
grunt.registerTask('default', ['copy', 'concat', 'uglify', 'connect', 'open', 'watch']);
};