-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
134 lines (119 loc) · 3.8 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
134
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: {
build: ["dist", "temp"],
options: {force: true}
},
copy: {
main: {
files: [
// includes files within path and its sub-directories
{expand: true, cwd: 'base/', src: ['**'], dest: 'dist/iAmGeoffrey'}
]
}
},
jade: {
compile: {
options: {
data: {
debug: false
}
},
files: {
"dist/iAmGeoffrey/game/index.html": ["jade/index.jade"],
"dist/iAmGeoffrey/game/intro.html": ["jade/intro.jade"]
}
}
},
concat: {
options: {
// define a string to put between each file in the concatenated output
separator: ';'
},
clientOnly: {
src: ['js/client/**/*.js'],
dest: 'dist/iAmGeoffrey/game/client.min.js'
},
shared: {
src: ['js/shared/**/*.js'],
dest: 'dist/iAmGeoffrey/game/shared.min.js'
},
server: {
src: ['js/server/**/*.js'],
dest: 'dist/iAmGeoffrey/game/server.min.js'
},
css: {
src: ['css/**/*.css'],
dest: 'dist/iAmGeoffrey/game/style.min.css'
}
},
uglify: {
options: {
banner: '',
nameCache: '.grunt-uglify-cache.json'
},
build: {
files: [
{expand: true, cwd: 'dist/iAmGeoffrey/game/', src: '*.min.js', dest: 'dist/iAmGeoffrey/game'}]
}
},
cssmin: {
target: {
files: {
'dist/iAmGeoffrey/game/style.min.css': ['dist/iAmGeoffrey/game/style.min.css']
}
}
},
compress: {
uncompressed: {
options: {
archive: 'uncompressed.zip',
level: 0
},
files: [
{src: ['dist/iAmGeoffrey/**'], dest: ''}
]
},
compressed: {
options: {
archive: 'compressed.zip',
level: 9
},
files: [
{src: ['dist/iAmGeoffrey/**'], dest: ''}
]
}
},
watch: {
cssjs: {
files: ['**/*.js', '**/*.css'],
tasks: ['concat', 'uglify', 'cssmin', 'compress'],
options: {
spawn: false,
}
},
jade: {
files: ['**/*.jade'],
tasks: ['jade', 'compress'],
options: {
spawn: false,
}
}
}
});
//load all the grunt plugins
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-jade");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-cssmin");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-compress");
grunt.loadNpmTasks("grunt-contrib-watch");
// Default task(s).
grunt.registerTask('default', ['clean', 'copy', 'jade', 'concat', 'uglify', 'cssmin', 'compress']);
grunt.registerTask('debug', ['clean', 'copy', 'jade', 'concat', 'cssmin', 'compress']);
grunt.registerTask('watch', ['watch']);
};