-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gruntfile.js
278 lines (244 loc) · 7.18 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*jslint node: true */
var exec = require('child_process').exec;
module.exports = function(grunt) {
'use strict';
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// Read local settings for things like the deployment locations
// The format should be:
// {
// "deploy" : {
// "default" : "s3://awesomebucket/folder/subfolder/",
// "bob" : "s3://awesomebucket/folder/subfolder/",
// "staging" : "s3://seriousbucket/staging/app/",
// "production : "s3://seriousbucket/production/app/"
// }
// }
dev: (function () {
var settings = 'dev-settings.json';
if (grunt.file.isFile(settings)) {
return grunt.file.readJSON('dev-settings.json');
}
return {};
}()),
// We set this later using a grunt task.
version: {
number: null,
commit: null,
custom: false,
toString: function () {
if (this.custom) { return this.number + '.' + this.commit + '_custom'; }
return this.number + '.' + this.commit;
}
},
dirs: {
staging: 'staging',
temp: 'temp',
build: 'build'
},
clean: ['<%= dirs.staging %>', '<%= dirs.temp %>', '<%= dirs.build %>'],
requirejs: {
compile: {
options: {
name: 'main',
baseUrl: '<%= dirs.staging %>/js',
mainConfigFile: 'src/js/main.js',
out: '<%= dirs.temp %>/js/main.js',
optimize: 'uglify2',
uglify2: {
// Preserve license/copyright comments
preserveComments: ( function () {
var re = /\(c\)|copyright|license/gi;
return function checkComments(node, token) {
return re.test(token.value);
};
}())
}
}
}
},
sass: {
dist: {
files: [ {
src: ['src/css/sass/styles.scss'],
dest: '<%= dirs.staging %>/css/app.css'
} ]
}
},
cssmin: {
compress: {
files: [ {
expand: true, // Enable dynamic expansion.
cwd: 'src/', // Src matches are relative to this path.
src: ['**/*.css'], // Actual pattern(s) to match.
dest: '<%= dirs.temp %>' // Destination path prefix.
} ]
}
},
concat: {
options: {
separator: ';',
banner: '/* v <%= version.toString() %> <%= grunt.template.today("isoDateTime") %> */\n'
},
build: {
src: ['<%= dirs.temp %>/js/main.js'],
dest: '<%= dirs.build %>/js/main.js'
}
},
copy: {
staging: {
files: [
{
expand: true,
cwd: 'src/',
src: [
'**/*',
'!**/*.scss',
'!**/sass/**'
],
dest: '<%= dirs.staging %>'
}
]
},
temp: {
files: [
// TODO: combine main.js and require.js
{
expand: true,
cwd: '<%= dirs.staging %>',
src: [
'index.html',
'js/require.js',
'js/lib/aight.js',
'img/**',
'**/*.png', // Leaflet looks for PNGs in a funny spot
'**/*.gif',
'font/**',
'css/font/**',
'fonts/**',
'css/fonts/**',
// CSS files for other components are likely raw CSS and not SCSS
'**/*.css'
],
dest: '<%= dirs.temp %>'
}
]
},
build: {
files: [
{
expand: true,
cwd: '<%= dirs.temp %>',
src: [
'js/require.js',
'js/lib/aight.js',
'**/*.css',
'css/**',
'*.html',
'img/**',
'**/*.png',
'**/*.gif',
'css/font/**',
'font/**',
'css/fonts/**',
'fonts/**'
],
dest: '<%= dirs.build %>'
}
]
}
},
watch: {
options: {
atBegin: true
},
files: ['src/**/*'],
tasks: ['stage']
}
});
// Load plugins
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');
// Define the deploy task
grunt.registerTask('deploy', 'Deploy the build directory to S3 using s3cmd', function (locname) {
var deploy = grunt.config('dev').deploy;
var location;
// Use the 'default' config value if we didn't specify a specific destination.
if (locname === undefined) {
location = deploy['default'];
} else {
location = deploy[locname];
}
if (location === undefined) {
grunt.log.error('No destination configured by that name: ' + locname);
return false;
}
var done = this.async();
var src = grunt.config('dirs').build;
// Make sure the source path ends with a slash.
if (src[src.length - 1] !== '/') {
src = src + '/';
}
// Make sure the destination path ends with a slash.
if (location[location.length - 1] !== '/') {
location = location + '/';
}
var cmd = 's3cmd sync ' + src + ' ' + location;
exec(cmd, function (error, stdout, stderr) {
if (stdout.length > 0) {
grunt.log.writeln(stdout);
}
if (stderr.length > 0) {
grunt.log.error(stderr);
}
if (error) {
done(false);
}
done();
});
});
// Define version task
grunt.registerTask('setVersion', 'Sets the version using package.json and git', function () {
grunt.config.requires(['pkg', 'version']);
var done = this.async();
var showCmd = 'git show -s head --format=format:%H';
var statusCmd = 'git status --short src';
// Get the commit hash.
exec(showCmd, function (error, stdout, stderr) {
if (error || stderr.length > 0) {
grunt.log.error(stderr);
done(false);
return;
}
var commit = stdout.toString().trim();
// See if we have local, uncommitted changes.
exec(statusCmd, function (error, stdout, stderr) {
if (error || stderr.length > 0) {
grunt.log.error(stderr);
done(false);
return;
}
var custom = stdout.length > 1;
// Use getRaw, so we don't get a copy.
var version = grunt.config.getRaw('version');
version.number = grunt.config('pkg').version;
version.commit = commit;
version.custom = custom;
grunt.log.writeln('Version: ' + version.toString());
done();
});
});
});
// Run the version task, which only updates the configuration with the appropriate version number.
grunt.task.run('setVersion');
grunt.registerTask('build', ['copy:staging', 'sass', 'cssmin', 'requirejs', 'copy:temp', 'concat:build', 'copy:build']);
grunt.registerTask('stage', ['copy:staging', 'sass']);
// Default task
grunt.registerTask('default', ['watch']);
};