-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
459 lines (400 loc) · 11.7 KB
/
Gruntfile.js
File metadata and controls
459 lines (400 loc) · 11.7 KB
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
'use strict';
var mountFolder = function (connect, dir) {
return connect.static(require('path').resolve(dir));
};
module.exports = function (grunt) {
// show elapsed time at the end
require('time-grunt')(grunt);
// load all grunt tasks
require('load-grunt-tasks')(grunt);
// load config
var config = grunt.file.readJSON('microbrew-it.json');
var jsFiles = config.build.dependencies;
var port = config.development.port;
var sourceFolder = config.build.source;
var buildFolder = config.build.destination;
var tmpFolder = "tmp";
grunt.initConfig({
// run several tasks in parallel
concurrent: {
target: {
tasks: ['connect', 'watch:source'],
options: {
logConcurrentOutput: true
}
}
},
// local image minifier
imagemin: {
options: {
optimizationLevel: 0,
pngquant: true,
progressive: true
},
files: [{
expand: true, // Enable dynamic expansion
cwd: 'app/', // Src matches are relative to this path
src: ['**/*.{png,jpg,gif}'], // Actual patterns to match
dest: buildFolder // Destination path prefix
}]
},
'sftp-deploy': {
build: {
auth: {
host: config.autoDeploy.host,
port: config.autoDeploy.port,
authKey: config.autoDeploy.key
},
cache: 'sftpCache.json',
src: config.autoDeploy.src,
dest: config.autoDeploy.dest,
exclusions: ['build/core/**/*.*', 'build/Application.js', 'build/Application.js.map', 'build/build.map.js'],
serverSep: '/',
concurrency: 4,
progress: true
}
},
// The Coffeescript compiler
coffee: {
compile: {
options: {
bare: true,
sourceMap: false
},
files: [{
expand: true, // Enable dynamic expansion
cwd: 'app/coffee', // Src matches are relative to this path
src: ['**/*.coffee'], // Actual patterns to match
dest: tmpFolder + '/js',
ext: '.js' // Destination path prefix
}]
},
develop: {
options: {
bare: true,
sourceMap: true ,
join: false
},
files: [{
expand: true, // Enable dynamic expansion
cwd: 'app/coffee', // Src matches are relative to this path
src: ['**/*.coffee'], // Actual patterns to match
dest: buildFolder,
ext: '.js' // Destination path prefix
}]
}
},
sass: {
options: {},
prod: {
options: {
outputStyle: 'compressed'
},
files: {
'<%= prodFolder %>/css/main.css' : '<%= tmpFolder %>/scss/main.scss'
}
},
develop: {
options: {
outputStyle: 'nested'
},
files: {
'build/main.css' : 'tmp/scss/main.scss'
}
}
},
ngAnnotate: {
options: {
singleQuotes: true,
},
app1: {
files: {
'build/build.annotated.js': ['build/build.js']
},
},
app2: {
files: [
{
expand: true,
src: ['f.js'],
ext: '.annotated.js', // Dest filepaths will have this extension.
extDot: 'last', // Extensions in filenames begin after the last dot
},
],
},
app3: {
files: [
{
expand: true,
src: ['g.js'],
rename: function (dest, src) { return src + '-annotated'; },
},
],
},
},
uglify: {
options: {
report: false,
mangle: true,
compress: true,
// sourceMap: function (path) {
// return path.replace(/build\/(.*).min.js/, "build/$1.map.js");
// },
// sourceMappingURL: function (path) {
// return path.replace(/build\/(.*).min.js/, "build/$1.map.js");
// }
},
prod: {
files: {
'build/build.min.js': ['build/build.annotated.js']
}
}
},
clean: {
src: ["build/**/*", "tmp/**/*"],
filter: 'isFile'
},
// server (node)
connect: {
options: {
port: port,
hostname: '*',
keepalive: true,
protocol: 'http'
},
test: {
options: {
middleware: function (connect) {
return [
mountFolder(connect, './build')
];
}
}
}
},
watch: {
source: {
files: ['app/**/*.*'],
options: {
spawn: false,
interrupt: true
}
}
},
compass: {
dev: { // Another target
options: {
sassDir: 'app/sass',
cssDir: 'build/css'
}
}
},
copy: {
html: {
files: [ {expand: true, cwd: 'app/', src: ['**/*.html'], dest: 'build/', filter: 'isFile'} ]
},
images: {
files: [ {expand: true, cwd: 'app/', src: ['**/*.{png,jpg,jpeg,gif,ico,svg,woff,svg,eot,ttf}'], dest: 'build/', filter: 'isFile'} ]
}
},
concat: {
options: {
separator: '\n',
stripBanners: true,
block: true,
line: true
},
sass: {
src: 'app/sass/**/*.scss',
dest: tmpFolder + '/scss/main.scss',
nonull: true
},
source: {
src: jsFiles,
dest: buildFolder + '/build.js',
nonull: true
}
}
});
// fires when any watched file is updated
grunt.event.on('watch', function(action, filepath, target) {
grunt.log.subhead('## ' + target + ': ' + filepath + ' has ' + action + ' ##');
// turn on --force
grunt.task.run('usetheforce_on');
// find filename and extention
var fileExt = filepath.split('.');
fileExt = fileExt[fileExt.length-1];
if(fileExt === "coffee" || fileExt === "js") {
grunt.log.writeln('#### DETECTED COFFEE CHANGE - COMMENCING REBUILD ####');
// run coffee only on changed files, for some reason coffee needs exact filepath in order to be able to write the file
grunt.task.run('coffee', 'coffee:develop', 'concat:source', 'ngAnnotate:app1', 'uglify:prod');
}
else if(fileExt === "scss" || fileExt === "css") {
grunt.log.writeln('#### DETECTED CSS CHANGE ####');
grunt.task.run('compass');
}
// changed file is a template
else if(fileExt === "html") {
grunt.log.writeln('#### DETECTED TEMPLATE CHANGE ####');
grunt.task.run('copy:html');
}
// if changed file is an asset
else if(filepath.indexOf('images') !== -1) {
grunt.log.writeln('#### DETECTED IMAGE ASSET CHANGE ####');
// grunt.task.run('imagemin');
grunt.task.run('copy:images');
}
// if(config.build.autoDeploy) {
// grunt.task.run('sftp-deploy:build');
// }
grunt.task.run('hasfailed', 'usetheforce_restore');
});
// avoid crash if error in build
grunt.registerTask('usetheforce_on',
'force the force option on if needed',
function() {
if ( !grunt.option( 'force' ) ) {
grunt.config.set('usetheforce_set', true);
grunt.option( 'force', true );
}
});
grunt.registerTask('usetheforce_restore',
'turn force option off if we have previously set it',
function() {
if ( grunt.config.get('usetheforce_set') ) {
grunt.option( 'force', false );
}
});
// Checks if there are any errors when running tasks in the watcher
grunt.registerTask('hasfailed', function() {
if (grunt.fail.errorcount > 0) {
grunt.warn('Encountered ' + grunt.fail.errorcount + ' errors while running watcher');
grunt.log.write('\x07'); // beep!
grunt.fail.errorcount = 0; //overwrite
}
});
grunt.registerTask('init', function() {
grunt.config.set('shell', {
npmInstall: {
command: 'npm install'
},
bowerInstall: {
command: 'bower install'
}
});
grunt.task.run(['shell:npmInstall', 'shell:bowerInstall']);
})
grunt.registerTask('gitTag', function () {
var packageJSON = grunt.file.readJSON('package.json');
// ---- GIT TAG ----
grunt.log.writeln('Git tag v' + packageJSON.version);
grunt.config.set('shell', {
gitCommit: {
command: 'git commit -am "Update version to v' + packageJSON.version + '"'
},
gitTag: {
command: 'git tag v' + packageJSON.version
},
gitPush: {
command: 'git push origin v' + packageJSON.version
}
});
grunt.task.run(['shell:gitCommit', 'shell:gitTag', 'shell:gitPush']);
});
grunt.registerTask('upload', function () {
var packageJSON = grunt.file.readJSON('package.json');
// ---- DEPLOY ----
grunt.log.writeln('Uploading files to server: ' + config.autoDeploy.host);
var versionPath = config.autoDeploy.dest + '/v' + packageJSON.version;
var latestPath = config.autoDeploy.dest + '/latest';
// Set dynamic config of sftp-deploy
grunt.config.set('sftp-deploy', {
versionDeploy: {
auth: {
host: config.autoDeploy.host,
port: config.autoDeploy.port,
authKey: config.autoDeploy.key
},
src: config.autoDeploy.src,
cache: false,
dest: versionPath,
exclusions: ['./build/core/**/*.*', './build/Application.js', './build/Application.js.map', './build/build.map.js'],
serverSep: '/',
concurrency: 4,
progress: true
},
latestDeploy: {
auth: {
host: config.autoDeploy.host,
port: config.autoDeploy.port,
authKey: config.autoDeploy.key
},
src: config.autoDeploy.src,
cache: 'tmp/latestDeployCache.json',
dest: latestPath,
exclusions: ['./build/core/**/*.*', './build/Application.js', './build/Application.js.map', './build/build.map.js'],
serverSep: '/',
concurrency: 4,
progress: true
}
});
// Run sftp-deploy with dynamic config
//grunt.task.run('sftp-deploy:versionDeploy');
grunt.task.run('sftp-deploy:latestDeploy');
});
grunt.registerTask('updateVersion', function (version) {
// Remove v in e.g v0.1.0 if present
if(version[0] === 'v') {
version = version.slice(1,version.length);
}
// ----- UPDATE VERSION NUMBER -----
grunt.log.write('Update version number ' + version);
var packageJSONfile = "package.json",
bowerJSONfile = "bower.json";
// Do we have package.json and bower.json
if (!grunt.file.exists(packageJSONfile) || !grunt.file.exists(bowerJSONfile)) {
grunt.log.error("package.json/bower.json config file missing. Aborting deploy!");
return false;//return false to abort the execution
}
var packageJSONobj = grunt.file.readJSON(packageJSONfile),
bowerJSONobj = grunt.file.readJSON(bowerJSONfile);
// Abort execution if we are trying to deploy existing version
if(version === packageJSONobj.version) {
grunt.log.error("Version to update to is equal to current version. Cannot update version number.");
return false;
}
packageJSONobj.version = version;
bowerJSONobj.version = version;
grunt.file.write(packageJSONfile, JSON.stringify(packageJSONobj, null, 2));
grunt.file.write(bowerJSONfile, JSON.stringify(bowerJSONobj, null, 2));
});
grunt.registerTask('deploy', function (version) {
// Remove v in e.g v0.1.0 if present
if(version[0] === 'v') {
version = version.slice(1,version.length);
}
// ----- UPDATE VERSION NUMBER -----
grunt.log.write('Update version number ' + version);
var packageJSONfile = "package.json",
bowerJSONfile = "bower.json";
// Do we have package.json and bower.json
if (!grunt.file.exists(packageJSONfile) || !grunt.file.exists(bowerJSONfile)) {
grunt.log.error("package.json/bower.json config file missing. Aborting deploy!");
return false;//return false to abort the execution
}
var packageJSONobj = grunt.file.readJSON(packageJSONfile),
bowerJSONobj = grunt.file.readJSON(bowerJSONfile);
// Abort execution if we are trying to deploy existing version
if(version === packageJSONobj.version) {
grunt.log.error("Version to update to is equal to current version. Cannot update version number.");
return false;
}
packageJSONobj.version = version;
bowerJSONobj.version = version;
grunt.file.write(packageJSONfile, JSON.stringify(packageJSONobj, null, 2));
grunt.file.write(bowerJSONfile, JSON.stringify(bowerJSONobj, null, 2));
grunt.task.run(['upload']);
});
grunt.registerTask('build', 'Build Microbrew.it development version (coffee, sass)', ['init', 'clean', 'coffee', 'coffee:develop', 'compass', 'concat:source', 'ngAnnotate:app1', 'uglify:prod', 'copy:html', 'copy:images' ]);
grunt.registerTask('default', 'Runs develop task and concurrent (watcher + connect).', ['build', 'concurrent']);
};