-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gruntfile.js
161 lines (146 loc) · 3.03 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/**
* - `Makefile` if for `make`
* - `Rakefile` is for `rake`,
* - `Gruntfile` is for `grunt` :)
*/
module.exports = function(grunt) {
// Including all helpers
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-processhtml');
grunt.loadNpmTasks('grunt-rsync');
grunt.loadNpmTasks('grunt-node-webkit-builder');
grunt.initConfig({
// Package variables
pkg: grunt.file.readJSON('package.json'),
// Files with metadata and stuff
meta_files: [
'favicon.png',
'humans.txt',
'LICENSE.md',
'manifest.webapp',
'package.json',
'README.md',
'robots.txt'
],
// Concatenates all javascript files into one
concat: {
dist: {
src: [
'lib/melonJS-1.0.0-min.js',
'lib/plugins/*.js',
'js/game.js',
'js/resources.js',
'js/repeatable-sprites.js',
'js/**/*.js'
],
dest: 'build/js/app.js'
}
},
// Copies files from one place to another
copy: {
dist: {
files: [{
src: 'css/**/*',
dest: 'build/'
},{
src: 'data/**/*',
dest: 'build/'
}]
}
},
// Goes through the HTML file, performing actions
// (on this case, compressing all <script> tags into one
processhtml: {
dist: {
options: {
process: true,
commentMarker: 'compress',
data: {
name : '<%= pkg.name %>',
author : '<%= pkg.author %>',
version : '<%= pkg.version %>',
repository : '<%= pkg.repository %>',
description : '<%= pkg.description %>'
}
},
files: {
'build/index.html': ['index.html']
}
}
},
// Minifies a `.js` file into a `.min.js`
uglify: {
options: {
banner: '/*full source code at <%= pkg.repository %>*/',
report: 'min',
preserveComments: 'false'
},
dist: {
files: {
'build/js/app.min.js': [
'build/js/app.js'
]
}
}
},
// After uglifying, remove the original
// non-minimized file at the `build` directory
clean: [
'build/js/app.js'
],
// Synchronize all the data on `build`
// directory to a remote server.
// Configure it here
rsync: {
options: {
recursive: true
},
dist: {
options: {
src: 'build/',
dest: '/home/alexd075/public_html/games/www',
host: '[email protected]',
port: 2222,
syncDestIgnoreExcl: true
}
}
},
// Builds a node-webkit app from the source
nodewebkit: {
options: {
build_dir : 'webkit_build',
mac : true,
win : true,
linux32 : true,
linux64 : true
},
src: [
'css/**/*',
'data/**/*',
'js/**/*',
'lib/**/*',
'favicon.png',
'Gruntfile.js',
'humans.txt',
'index.html',
'LICENSE.md',
'manifest.webapp',
'package.json',
'README.md',
'robots.txt'
]
}
});
// Things that will run by default
grunt.registerTask('default', [
'concat',
'uglify',
'clean',
'copy',
'processhtml',
'rsync'
]);
};