-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
422 lines (370 loc) · 11.9 KB
/
gulpfile.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
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
/* jshint camelcase:false */
var gulp = require('gulp');
var common = require('./gulp/common.js');
var karma = require('karma').server;
var merge = require('merge-stream');
var lrserver = require('tiny-lr')();
var express = require('express');
var livereload = require('connect-livereload');
var pkg = require('./package.json');
var plug = require('gulp-load-plugins')();
var env = plug.util.env;
var log = plug.util.log;
/**
* List the available gulp tasks
*/
gulp.task('help', plug.taskListing);
/**
* Lint the code
* @return {Stream}
*/
gulp.task('analyze', function() {
log('Analyzing source with JSHint and JSCS');
var jshintTests = analyzejshint('./test/**/*.spec.js', './test/.jshintrc');
var jshint = analyzejshint([].concat(pkg.paths.js, '!./test/**/*.spec.js'), './.jshintrc');
var jscs = analyzejscs([].concat(pkg.paths.js), './.jshintrc');
return merge(jshintTests, jshint, jscs);
});
/**
* Create $templateCache from the html templates
* @return {Stream}
*/
gulp.task('templatecache', function() {
log('Creating an AngularJS $templateCache');
return gulp
.src(pkg.paths.htmltemplates)
.pipe(plug.angularTemplatecache('templates.js', {
module: 'app.core',
standalone: false,
root: 'app/'
}))
.pipe(gulp.dest(pkg.paths.stage));
});
/**
* Minify and bundle the app's JavaScript
* @return {Stream}
*/
gulp.task('js', ['analyze', 'templatecache'], function() {
log('Bundling, minifying, and copying the app\'s JavaScript');
var source = [].concat(pkg.paths.js, pkg.paths.stage + 'templates.js');
return gulp
.src(source)
// .pipe(plug.sourcemaps.init()) // get screwed up in the file rev process
.pipe(plug.concat('all.min.js'))
.pipe(plug.ngAnnotate({add: true, single_quotes: true}))
.pipe(plug.bytediff.start())
.pipe(plug.uglify({mangle: true}))
.pipe(plug.bytediff.stop(common.bytediffFormatter))
// .pipe(plug.sourcemaps.write('./'))
.pipe(gulp.dest(pkg.paths.stage));
});
/**
* Copy the Vendor JavaScript
* @return {Stream}
*/
gulp.task('vendorjs', function() {
log('Bundling, minifying, and copying the Vendor JavaScript');
return gulp.src(pkg.paths.vendorjs)
.pipe(plug.concat('vendor.min.js'))
.pipe(plug.bytediff.start())
.pipe(plug.uglify())
.pipe(plug.bytediff.stop(common.bytediffFormatter))
.pipe(gulp.dest(pkg.paths.stage)); // + 'vendor'));
});
/**
* Compile and bundle the Less
* @return {Stream}
*/
gulp.task('less', function() {
log('Compile less, minifying, and copying the app\'s CSS');
return gulp.src(pkg.paths.less)
.pipe(plug.less())
.pipe(plug.concat('all.min.css'))
.pipe(plug.autoprefixer('last 2 version', '> 5%'))
.pipe(plug.bytediff.start())
.pipe(plug.minifyCss({}))
.pipe(plug.bytediff.stop(common.bytediffFormatter))
.pipe(gulp.dest(pkg.paths.stage + 'css'));
});
/**
* Minify and bundle the CSS
* @return {Stream}
*/
gulp.task('css', function() {
log('Bundling, minifying, and copying the app\'s CSS');
return gulp.src(pkg.paths.css)
.pipe(plug.concat('all.min.css')) // Before bytediff or after
.pipe(plug.autoprefixer('last 2 version', '> 5%'))
.pipe(plug.bytediff.start())
.pipe(plug.minifyCss({}))
.pipe(plug.bytediff.stop(common.bytediffFormatter))
// .pipe(plug.concat('all.min.css')) // Before bytediff or after
.pipe(gulp.dest(pkg.paths.stage + 'css'));
});
/**
* Minify and bundle the Vendor CSS
* @return {Stream}
*/
gulp.task('vendorcss', function() {
log('Compressing, bundling, copying vendor CSS');
return gulp.src(pkg.paths.vendorcss)
.pipe(plug.concat('vendor.min.css'))
.pipe(plug.bytediff.start())
.pipe(plug.minifyCss({}))
.pipe(plug.bytediff.stop(common.bytediffFormatter))
.pipe(gulp.dest(pkg.paths.stage + 'css'));
});
/**
* Copy fonts
* @return {Stream}
*/
gulp.task('fonts', function() {
log('Copying fonts');
return gulp
.src(pkg.paths.fonts)
.pipe(gulp.dest(pkg.paths.stage + 'fonts'));
});
/**
* Compress images
* @return {Stream}
*/
gulp.task('images', function() {
log('Compressing, caching, and copying images');
return gulp
.src(pkg.paths.images)
.pipe(plug.cache(plug.imagemin({optimizationLevel: 3})))
.pipe(gulp.dest(pkg.paths.stage + 'img'));
});
/**
* Inject all the files into the new index.html
* rev, but no map
* @return {Stream}
*/
gulp.task('rev-and-inject',
['js', 'vendorjs', 'less'], function() {
log('Rev\'ing files and building index.html');
var minified = pkg.paths.stage + '**/*.min.*';
var index = pkg.paths.index + 'index.html';
var minFilter = plug.filter(['**/*.min.*', '!**/*.map']);
var indexFilter = plug.filter(['index.html']);
var stream = gulp
// Write the revisioned files
.src([].concat(minified, index)) // add all staged min files and index.html
.pipe(minFilter) // filter the stream to minified css and js
.pipe(plug.rev()) // create files with rev's
.pipe(gulp.dest(pkg.paths.stage)) // write the rev files
.pipe(minFilter.restore()) // remove filter, back to original stream
// inject the files into index.html
.pipe(indexFilter) // filter to index.html
.pipe(inject('css/vendor.min.css', 'inject-vendor'))
.pipe(inject('css/all.min.css'))
.pipe(inject('vendor.min.js', 'inject-vendor'))
.pipe(inject('all.min.js'))
.pipe(gulp.dest(pkg.paths.stage)) // write the rev files
.pipe(indexFilter.restore()) // remove filter, back to original stream
// replace the files referenced in index.html with the rev'd files
.pipe(plug.revReplace()) // Substitute in new filenames
.pipe(gulp.dest(pkg.paths.stage)) // write the index.html file changes
.pipe(plug.rev.manifest()) // create the manifest (must happen last or we screw up the injection)
.pipe(gulp.dest(pkg.paths.stage)); // write the manifest
function inject(path, name) {
var glob = pkg.paths.stage + path;
var options = {
ignorePath: pkg.paths.stage.substring(1),
read: false
};
if (name) { options.name = name; }
return plug.inject(gulp.src(glob), options);
}
});
/**
* Stage the optimized app
* @return {Stream}
*/
gulp.task('stage',
['rev-and-inject', 'images', 'fonts'], function() {
log('Staging the optimized app');
return gulp.src('').pipe(plug.notify({
onLast: true,
message: 'Deployed code to stage!'
}));
});
/**
* Remove all files from the build folder
* One way to run clean before all tasks is to run
* from the cmd line: gulp clean && gulp stage
* @return {Stream}
*/
gulp.task('clean', function() {
var paths = pkg.paths.build;
log('Cleaning: ' + plug.util.colors.blue(paths));
return gulp
.src(paths, {read: false})
.pipe(plug.rimraf({force: true}));
});
/**
* Watch files and build
* @return {Stream}
*/
gulp.task('watch', function() {
log('Watching all files');
var less = ['gulpfile.js'].concat(pkg.paths.less);
var images = ['gulpfile.js'].concat(pkg.paths.images);
var js = ['gulpfile.js'].concat(pkg.paths.js);
gulp
.watch(js, ['js', 'vendorjs'])
.on('change', logWatch);
gulp
.watch(less, ['less'])
.on('change', logWatch);
gulp
.watch(images, ['images'])
.on('change', logWatch);
function logWatch(event) {
log('*** File ' + event.path + ' was ' + event.type + ', running tasks...');
}
});
/**
* Run specs once and exit
* To start servers and run midway specs as well:
* gulp test --startServers
* @return {Stream}
*/
gulp.task('test', function (done) {
//startTests(true /*singleRun*/, done);
});
/**
* Run specs and wait.
* Watch for file changes and re-run tests on each change
* To start servers and run midway specs as well:
* gulp autotest --startServers
* @return {Stream}
*/
gulp.task('autotest', function (done) {
//startTests(false /*singleRun*/, done);
});
gulp.task('dev', function() {
var livereloadport = 35729;
var serverport = 5000;
var server = express();
// Add live reload
server.use(livereload({port: livereloadport}));
// Set root folder
server.use(express.static(pkg.paths.stage));
// Because I like HTML5 pushstate .. this redirects everything back to our index.html
server.all('/*', function(req, res) {
res.sendfile('index.html', { root: pkg.paths.stage });
});
// Start webserver
server.listen(serverport);
// Start live reload
lrserver.listen(livereloadport);
// Run the watch task, to keep taps on changes
gulp.run('watch');
});
////////////////
/**
* Execute JSHint on given source files
* @param {Array} sources
* @param {string} jshintrc - file
* @return {Stream}
*/
function analyzejshint(sources, jshintrc) {
return gulp
.src(sources)
.pipe(plug.jshint(jshintrc))
.pipe(plug.jshint.reporter('jshint-stylish'));
}
/**
* Execute JSCS on given source files
* @param {Array} sources
* @return {Stream}
*/
function analyzejscs(sources) {
return gulp
.src(sources)
.pipe(plug.jscs('./.jscsrc'));
}
/**
* Start the node server using nodemon.
* Optionally start the node debugging.
* @param {Object} args - debugging arguments
* @return {Stream}
*/
function serve(args) {
var options = {
script: pkg.paths.server + 'app.js',
delayTime: 1,
ext: 'html js',
env: {'NODE_ENV': args.mode},
watch: [
'gulpfile.js',
'package.json',
pkg.paths.server,
pkg.paths.client
]
};
if (args.debug) {
gulp.src('', {read: false})
.pipe(plug.shell(['node-inspector']));
options.nodeArgs = [args.debug + '=5858'];
}
return plug.nodemon(options)
//.on('change', tasks)
.on('restart', function() {
log('restarted!');
});
}
/**
* Start Live Reload for a specific environment.
* @param {string} mode
* @return {Steram}
*/
function startLivereload(mode) {
if (!env.liveReload) { return; }
log('Serving from ' + mode);
var path = (env === 'stage' ? [pkg.paths.stage, pkg.paths.client + '/**'] : [pkg.paths.client + '/**']);
var options = {auto: true};
plug.livereload.listen(options);
return gulp.watch(path)
.on('change', function(file) {
plug.livereload.changed(file.path);
});
}
/**
* Start the tests using karma.
* @param {boolean} singleRun - True means run once and end (CI), or keep running (dev)
* @param {Function} done - Callback to fire when karma is done
* @return {undefined}
*/
function startTests(singleRun, done) {
var child;
var excludeFiles = ['./app/**/*spaghetti.js'];
var spawn = require('child_process').spawn;
if (env.startServers) {
log('Starting servers');
var savedEnv = process.env;
savedEnv.NODE_ENV = 'dev';
savedEnv.PORT = 8888;
child = spawn('node', ['src/server/app.js'], {env: savedEnv}, childProcessCompleted);
} else {
excludeFiles.push('./test/midway/**/*.spec.js');
}
karma.start({
configFile: __dirname + '/karma.conf.js',
exclude: excludeFiles,
singleRun: !!singleRun
}, karmaCompleted);
////////////////
function childProcessCompleted(error, stdout, stderr) {
log('stdout: ' + stdout);
log('stderr: ' + stderr);
if (error !== null) {
log('exec error: ' + error);
}
}
function karmaCompleted() {
if (child) {child.kill();}
done();
}
}