-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
375 lines (323 loc) · 9.64 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
'use strict';
var fs = require('fs');
var path = require('path');
try { // API key to automate deploys to the CDN
var config = require('./config.json');
process.env['RACKSPACE_API_KEY'] = config['RACKSPACE_API_KEY'];
} catch (e) {}
// Project folders (relative to this Gruntfile)
var project = {
app: 'app',
dist: 'dist'
};
/* Load the livereload <script> snippet
* This gets inject into our HTML in the connect dev server with middleware
*/
var lrSnippet = function(options) {
options = options || {};
return function(req, res, next) {
var snip = require('grunt-contrib-livereload/lib/utils').livereloadSnippet;
var r = req;
// Fudge request URL to force livereload-snippet injection (used for pushState requests)
if (options.force) {
r = { url: '/index.html' };
}
snip(r, res, next);
}
};
// Wrapper around connect.static so we can properly resolve the directory to mount
var mountFolder = function(connect, dir) {
return connect.static(path.resolve(dir));
};
// This is a custom middleware for connect to serve our index.html for pushState requests
// This should be added after mounting any folders so we can still serve real static files
var serveIndex = function(req, res) {
var index = path.resolve(project.app + '/index.html');
var rs = fs.createReadStream(index);
rs.on('open', function() {
rs.pipe(res);
});
};
// Grunt!!!
module.exports = function(grunt) {
var _ = grunt.util._;
// Look in package.json for grunt devDependencies and load them into grunt
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
grunt.initConfig({
// Add the project dirs into the config so we can reference
// them below using the underscore template syntax
project: project,
// Read our package.json file for extra info
pkg: grunt.file.readJSON('package.json'),
watch: {
// Recompile LESS which will then trigger the livereload watcher below
less: {
files: ['app/styles/{,*/}*.less', 'app/components/tgm-bootstrap/less/*.less'],
tasks: ['less:server']
},
/* When any main assets in `project.app` change we should reload the browser
* Globbing now has OR statements, i.e. app/{js,scripts} will search app/js and app/scripts
* If you omit the first value it works like an optional match so app/{,js}/*.js
* Will match app/myscript.js and app/js/otherscript.js
*
* Any precompiled resources (i.e. compiled CSS, compiled Handlebars templates) live in the .tmp folder
*/
livereload: {
files: [
'<%= project.app %>/index.html',
'{.tmp,<%= project.app %>}/styles/{,/*}*.css',
'{.tmp,<%= project.app %>}/js/{,/*,**/,*/}*.js',
'<%= project.app %>/images/{,*/}*.{png,jpg,jpeg,webp}'
],
tasks: ['livereload']
}
},
// develpment server
connect: {
options: {
port: 9000,
// Use 0.0.0.0 to listen from anywhere
// Can be changed to localhost to lock it down
hostname: '0.0.0.0'
},
// dev server with livereload snippet injected
livereload: {
options: {
middleware: function(connect) {
return [
lrSnippet(),
// try serving real static files first
mountFolder(connect, '.tmp'),
mountFolder(connect, project.app),
// force livereload snippet because we know we're about to hit serveIndex middleware
lrSnippet({ force: true }),
// if we get to here, always resond with index.html instead of a 404
serveIndex
];
}
}
},
// dev server that ONLY runs the /dist folder, good for checking a build before deployment
dist: {
options: {
middleware: function(connect) {
return [
mountFolder(connect, 'dist'),
serveIndex
];
}
}
}
},
clean: {
dist: ['.tmp', '<%= project.dist %>/*'],
server: ['.tmp']
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
// have to use with_overrides because the jshint task doesn't automatically merge options with .jshintrc
with_overrides: {
options: {
globals: {
jQuery: true,
$: true,
_: true,
Backbone: true,
Modernizr: true
}
}
},
all: [
// Yo dawg, I heard you like linting when building
// So I put a lint task in your build file so you can lint your build file while you build
'Gruntfile.js',
'<%= project.app %>/js/{,/*}*.js',
// ! = Ignore the libs folder which contains dodgy 3rd-party code
'!<%= project.app %>/js/libs/'
]
},
// LESS task has two targets so we can run unminified CSS in dev mode
less: {
server: {
files: {
// compile to our .tmp, this folder is mounted in the dev server
'.tmp/styles/main.css': '<%= project.app %>/styles/main.less'
}
},
dist: {
// compress for production :)
yuicompress: true,
files: {
'<%= project.dist %>/styles/main.css': '<%= project.app %>/styles/main.less'
}
}
},
// useminPrepare scans files for <!-- build:(js|css) --> blocks
// and injects config into the grunt-contrib-concat task
useminPrepare: {
html: '<%= project.app %>/index.html',
options: {
dest: '<%= project.dist %>'
}
},
usemin: {
html: ['<%= project.dist %>/{,*/}*.html'],
css: ['<%= project.dist %>/styles/{,*/}*.css'],
options: {
dirs: ['<%= project.dist %>']
}
},
imagemin: {
dist: {
files: [{
expand: true,
cwd: '<%= project.app %>/images',
src: '{,*/}*.{png,jpg,jpeg}',
dest: '<%= project.dist %>/images'
}]
}
},
htmlmin: {
dist: {
options: {
removeComments: true,
collapseWhitespace: true,
collapseBolleanAttributes: true,
removeAttributeQuotes: true,
removeRedundantAttributes: true
},
files: {
'<%= project.dist %>/index.html': '<%= project.dist %>/index.html'
}
}
},
rev: {
options: {
algorithm: 'sha512',
length: 16
},
files: {
src: ['<%= project.dist %>/js/*.js', '<%= project.dist %>/styles/*.css'],
}
},
// A whitelist of extra files to copy
// Processed assets like JS, CSS, Images, etc are all copied over
// by their respective tasks.
copy: {
dist: {
files: [{
expand: true,
dot: true,
cwd: '<%= project.app %>',
dest: '<%= project.dist %>',
src: [
'index.html',
'*.{ico,txt}',
'.htaccess'
]
}]
}
},
cdn: {
dist: {
src: ['<%= project.dist %>/index.html'],
cdn: 'http://political-donations.theglobalmail.org'
},
staging: {
src: ['<%= cdn.dist.src %>'],
cdn: 'http://political-donations-staging.theglobalmail.org'
}
},
cloudfiles: {
staging: {
user: 'theglobalmail',
key: process.env.RACKSPACE_API_KEY,
upload: [{
container: 'political-donations-staging',
src: '<%= project.dist %>/**/*',
dist: '',
stripcomponents: 1
}]
},
dist: {
user: 'theglobalmail',
key: process.env.RACKSPACE_API_KEY,
upload: [{
container: 'political-donations',
src: '<%= project.dist %>/**/*',
dist: '',
stripcomponents: 1
}]
}
}
});
grunt.renameTask('regarde', 'watch');
grunt.registerTask('server', function(target) {
if (target === 'dist') {
return grunt.task.run(['connect:dist:keepalive']);
}
grunt.task.run([
'clean:server',
'jshint:with_overrides',
'less:server',
'livereload-start',
'connect:livereload',
'watch'
]);
});
// builds the project in /dist
// target can be dev, staging, production
// these targets change which CDN URL to use, or none for dev
grunt.registerTask('build', function(target) {
var targets = [
'jshint:with_overrides',
'clean:dist',
'less:dist',
'useminPrepare',
'imagemin',
'concat', // concat configuration is generated by the useminPrepare task
'copy:dist',
'uglify',
'rev',
'usemin'
];
// allow building with different CDN URLs
if (target === 'staging') {
targets.push('cdn:staging');
} else if (target !== 'dev') {
targets.push('cdn:dist');
}
targets.concat([
'htmlmin'
]);
grunt.task.run(targets);
});
// TODO: Testing
grunt.registerTask('test');
grunt.registerTask('deploy', function(target) {
// Build and deploy
var tasks = [
'build'
];
if (process.env['RACKSPACE_API_KEY'] === undefined) {
throw new TypeError('Specify the `RACKSPACE_API_KEY` property in local_config.json');
}
// Deploy targets
var targetToTask = {
'production': 'cloudfiles:dist',
'staging': 'cloudfiles:staging'
};
if (targetToTask[target] === undefined) {
throw new TypeError('Select a target destination from: ' + _(targetToTask).keys().join(', '));
}
tasks = tasks.concat([
targetToTask[target],
'clean:dist'
]);
grunt.task.run(tasks);
});
// default is run if you invoke grunt without a target
grunt.registerTask('default', 'build');
};