-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
546 lines (471 loc) · 15.5 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
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
/*jshint node: true */
var args = require('yargs').argv;
var path = require('path');
var glob = require('glob');
var globArray = require('glob-array');
var colors = require('chalk');
var config = require('./gulp.config')();
var del = require('del');
var fs = require('fs');
var gulp = require('gulp');
var md5 = require('md5');
var modRewrite = require('connect-modrewrite');
var runSequence = require('run-sequence');
var siphonMQ = require('siphon-media-query');
var nginclude = require('./gulp.nginclude');
var $ = require('gulp-load-plugins')({
lazy: true
});
var processRoot = process.cwd();
/**
* yargs variables can be passed in to alter the behavior of tasks
*/
gulp.task('default', ['help']);
gulp.task('help', function() {
logHead('Options');
logBody([
'--env=[prod|staging|local]',
' Controls applying revision thumbprints, minifying media, choosing robots.txt',
' "prod" forces the api to production',
' Defaults to local',
'',
'--config=[prod|staging|local]',
' Sets which config file to use. `/config/*.json`',
' Settings include; useStrict, apiUrl, fbAppId, googleClientId, googleAnalyticsId',
' Defaults to staging',
], 1);
logHead('Example Usage');
logBody('Make a production build',1);
logBody('`gulp build --env=prod --config=prod`', 2, 'cyan');
logBody('');
logBody('Start a development server',1);
logBody('`gulp serve`', 2, 'cyan');
logBody('');
logBody('Start a development server using a local api server',1);
logBody('`gulp serve --config=local`', 2, 'cyan');
return $.taskListing.withFilters(null, 'default')();
});
activate();
//////////////////////////////
function activate() {
// no task selected
if (args._.length === 0) {
return;
}
// Read the args, and set defaults
config.env = args.env || 'local';
config.configFile = args.config || 'staging';
// The `env` arg drives whether or not this is production
config.isEnvProduction = (config.env === 'prod');
config.isEnvStaging = (config.env === 'staging');
config.isEnvLocal = (config.env === 'local');
logHead('Argument Feedback');
logBody([
'--env=' + config.env,
'--config=' + config.configFile,
'',
], 1, 'cyan');
// Assign the application settings from the config folder
// this read is sync
config.settings = readConfig(config.configFile);
config.email = getThemeEmailConfig();
}
/**
* Read the settings from the right file
*/
function readConfig(configFile) {
return JSON.parse(fs.readFileSync('./config/' + configFile + '.json', 'utf8'));
}
function getThemeEmailConfig() {
if (!config.settings.theme) return;
var themeEmailRoot = 'src/themes/' + config.settings.theme + '/email/';
return {
templates: [themeEmailRoot + '*.html',
'!' + themeEmailRoot + '*.inline.html'],
dest: themeEmailRoot,
styles: themeEmailRoot + 'css.css'
};
}
/**
* Build the app
* This is typically used when getting ready to deploy the app
* `gulp build --env=prod`
*/
gulp.task('build', function build(cb) {
runSequence('clean', 'config', 'compile', 'revision', cb);
});
/**
* Build and start a server
* This is typically used for local development work
* `gulp serve` or `gulp serve --config=local`
*/
gulp.task('serve', ['build'], function serve() {
gulp.start('serve_watch');
});
/**
* Vet the code
*/
gulp.task('vet', function vet() {
return gulp.src(applyTheming(config.scripts.app))
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish'));
});
/**
* Remove all build / temp files
*/
gulp.task('clean', function clean(done) {
del([config.build, config.temp], done);
});
/**
* Replace the config placeholders with the correct value for the variable
* from the config files in /config. Then move the file to a tmp folder
*
* `gulp build --config=(prod|staging|local)`
*/
gulp.task('config', function() {
var replacePattern = {
patterns: [{
json: config.settings
}]
};
return gulp.src('config/config.js')
.pipe($.replaceTask(replacePattern))
.pipe(gulp.dest(config.temp));
});
/**
* Run all compiling tasks
*/
gulp.task('compile', [
'compile_html',
'compile_misc',
'compile_robots',
'compile_scripts',
'compile_styles',
'compile_media',
'compile_fonts',
'compile_theme_emails',
]);
/**
* Compile all javascript
*/
gulp.task('compile_scripts', ['compile_scripts_app', 'compile_scripts_lib']);
gulp.task('compile_scripts_app', function compile_scripts_app() {
var scriptsAppPaths = applyTheming(config.scripts.app);
scriptsAppPaths = filterOverwrittenFiles(scriptsAppPaths);
scriptsAppPaths.unshift(config.app);
// REFACTOR: This makes dev/staging/production different... :-1:
// uglify + concat breaks sourcemaps so don't use it unless we are on production
// https://github.com/terinjokes/gulp-uglify/issues/105
if (config.isEnvProduction || config.isEnvStaging) {
return gulp.src(scriptsAppPaths)
.pipe($.plumber(handleError))
.pipe($.tap(resolveControllersNames))
.pipe($.uglify(config.uglifySettings))
.pipe($.plumber.stop())
.pipe($.concat('main.js'))
.pipe(gulp.dest(config.build + 'scripts'));
} else {
return gulp.src(scriptsAppPaths)
.pipe($.tap(resolveControllersNames))
.pipe($.concat('main.js'))
.pipe(gulp.dest(config.build + 'scripts'));
}
});
gulp.task('compile_scripts_lib', function compile_scripts_lib() {
return gulp.src(applyTheming(config.scripts.lib))
.pipe($.concat('lib.js'))
.pipe(gulp.dest(config.build + 'scripts'));
});
/**
* Compile all of the html files
*/
gulp.task('compile_html', ['compile_html_root', 'compile_html_nonroot']);
gulp.task('compile_html_root', function() {
var replacePattern = {
patterns: [{
json: config.settings
}]
};
return gulp.src(applyTheming(config.html.root))
.pipe($.replaceTask(replacePattern))
.pipe(nginclude({assetsDirs: ['./src/themes/' + config.settings.theme + '/app', './src/app']}))
.pipe(gulp.dest(config.build));
});
gulp.task('compile_html_nonroot', ['compile_html_root'], function compile_html_nonroot() {
return gulp.src(applyTheming(config.html.nonRoot))
.pipe(nginclude({assetsDirs: ['./src/themes/' + config.settings.theme + '/app', './src/app']}))
.pipe(gulp.dest(config.build + 'views/'));
});
/**
* Compile the robots.txt file
* --env=(prod|*)
*/
gulp.task('compile_robots', function compile_robots() {
var robotPath = config.isEnvProduction ? config.robots.prod : config.robots.default;
return gulp.src(applyTheming(robotPath))
.pipe($.rename('robots.txt'))
.pipe(gulp.dest(config.build));
});
/**
* Compile oddball files
*/
gulp.task('compile_misc', function compile_misc() {
return gulp.src(applyTheming(config.misc))
.pipe(gulp.dest(config.build));
});
/**
* Compile styles
* SASS -> CSS -> app.min.css
*/
gulp.task('merge_styles', function merge_styles() {
return gulp.src(applyTheming(config.styles.all))
.pipe(gulp.dest(config.temp));
});
gulp.task('compile_merged_styles', function compile_merged_styles() {
var isMinifyActive = config.isEnvProduction || config.isEnvStaging;
return gulp.src(config.temp + config.styles.root)
.pipe($.sass())
.pipe($.sourcemaps.init())
.pipe($.sass(config.sassSettings).on('error', $.sass.logError))
.pipe($.sourcemaps.write({sourceRoot: '.'}))
.pipe($.sourcemaps.init({loadMaps: true}))
.pipe($.autoprefixer('last 2 version', 'safari 5', 'ie 9', 'opera 12.1', 'ios 6', 'android 4'))
.pipe($.if(isMinifyActive, $.cleanCss()))
.pipe($.rename({
suffix: '.min'
}))
.pipe($.sourcemaps.write({sourceRoot: '.'}))
.pipe(gulp.dest(config.build + 'styles/'));
});
gulp.task('compile_styles', function() {
runSequence('merge_styles', 'compile_merged_styles');
});
/**
* Move and minify images / mixed-media
*/
gulp.task('compile_media', function compile_media() {
var mediaBuild = config.build + 'images/';
var isMinifyActive = config.isEnvProduction || config.isEnvStaging;
return gulp.src(applyTheming(config.media))
.pipe($.if(isMinifyActive, $.imagemin()))
.pipe(gulp.dest(mediaBuild));
});
/**
* Move fonts
*/
gulp.task('compile_fonts', function compile_fonts() {
return gulp.src(applyTheming(config.fonts))
.pipe(gulp.dest(config.build + 'fonts/'));
});
/**
* Inline css for emails
*/
gulp.task('compile_theme_emails', function compile_theme_emails() {
if (!config.settings.theme) return;
var css = fs.readFileSync(config.email.styles).toString();
var mqCss = siphonMQ(css);
return gulp.src(config.email.templates)
.pipe($.inlineCss({
applyStyleTags: false, // currently removes trailing slashes on meta
}))
.pipe($.replaceTask({
patterns: [{
match: '<!-- <inline-style-injection> -->',
replacement: '<style>' + mqCss + '</style>',
}],
usePrefix: false,
}))
.pipe($.htmlmin({
// keepClosingSlash: true, // would like to enable
collapseWhitespace: true,
conservativeCollapse: true, // breaks gmail if you remove me
preserveLineBreaks: true, // breaks gmail if you remove me
minifyCSS: true,
removeComments: true,
}))
.pipe($.insert.transform(function(content, f){
// Email templates break if you have a carriage return after
// this comment, so be careful
var hash = md5(content);
var header = '<!-- build:' + hash + ' -->';
return header + content;
}))
.pipe($.rename({
suffix: '.inline',
}))
.pipe(gulp.dest(config.email.dest));
});
/**
* Watch files for changes and compile
*/
gulp.task('serve_watch', function serve_watch() {
gulp.start('serve_server');
// App
gulp.watch(applyTheming(config.html.root), ['compile_html_root']);
gulp.watch(applyTheming(config.html.nonRoot), ['compile_html']);
gulp.watch(applyTheming(config.styles.all), ['compile_styles']);
gulp.watch(applyTheming(config.scripts.lib), ['compile_scripts_lib']);
gulp.watch(applyTheming(config.scripts.app), ['compile_scripts_app']);
// Emails
if (config.settings.theme) {
gulp.watch(config.email.dest, ['compile_theme_emails']);
}
});
/**
* Starts a server in the build directory
*/
gulp.task('serve_server', function serve_server() {
var express = require('express');
var app = express();
var staticFolder = path.join(__dirname, config.build);
app.use(modRewrite(['!\\. /index.html [L]']))
.use(express.static(staticFolder));
app.listen(config.node.port, function() {
logHead('Server Started');
logBody([
'Storefront: http://localhost:' + config.node.port,
'Foundation: ' + config.settings['apiUrl'],
'',
]);
return gulp;
});
});
/**
* Thumbprint js, css for prod and staging
* --env=(prod|*)
*/
gulp.task('revision', function revision() {
if (config.isEnvProduction || config.isEnvStaging) {
var revAll = new $.revAll({
dontUpdateReference: ['.html'],
dontRenameFile: ['.html']
});
return gulp.src(config.build + '**/*.{js,css,html}')
.pipe(revAll.revision())
.pipe(gulp.dest(config.build));
}
});
////////////////////////////////
function handleError(err) {
logHead('Error');
logBody('Plugin: ' + err.plugin);
if (err.fileName) {
logBody('File: ' + err.fileName + ':' + err.lineNumber);
}
logBody('Message: ' + err.message);
$.util.beep();
}
function logHead(msg) {
var bar = '------------------------------';
console.log('');
console.log(colors.gray(msg));
console.log(bar);
}
function logBody(msgs, prefixCount, strColor) {
if (typeof prefixCount === 'undefined') {
prefixCount = 1;
}
var prefix = repeat(' ', prefixCount);
msgs = (typeof msgs === 'string') ? [msgs] : msgs;
msgs.forEach(function(msg) {
if (strColor) {
msg = colors.styles[strColor].open + msg + colors.styles[strColor].close;
}
console.log(prefix + msg);
});
}
function repeat(str, num) {
var resp = '';
if (num) {
for (var i = 0; i < num; i++) {
resp += str;
}
}
return resp;
}
////////////////////////////////
// Themes
/**
* Transforms file globs to grab files from both - StoreFront and current theme
*/
function applyTheming(globs) {
var result = [];
if (!Array.isArray(globs)) {
globs = [globs];
}
globs.forEach(function(glob) {
result.push(prefixGlobWithPAth(glob, './src/app'));
if (config.settings.theme) {
result.push(prefixGlobWithPAth(glob, './src/themes/' + config.settings.theme + '/app'));
}
});
return result;
}
function prefixGlobWithPAth(glob, path) {
if (glob.indexOf('!') !== 0) {
return path + '/' + glob;
} else {
return '!' + path + '/' + glob.slice(1);
}
}
/**
* Changes parent controllers names
* parent: checkoutController -> _checkoutController
* child: checkoutController
*/
function resolveControllersNames(file) {
if (!config.settings.theme) return file;
if (isBaseController(file) && hasChildController(file)) {
renameBaseController(file);
}
}
/**
* Checks if file is a StoreFront controller
*/
function isBaseController(file) {
var controllerFileRegex = /.*controller.js$/;
if (!controllerFileRegex.test(file.path)) {
return false;
}
var relativePath = path.relative(processRoot, file.path);
return relativePath.indexOf('src' + path.sep + 'app') === 0;
}
/**
* Checks if StoreFront controller has a child in a theme
* Child controller has the same file path, filename is prefixed with _
*/
function hasChildController(file) {
var pathInTheme = path.relative(processRoot + '/src/app', path.dirname(file.path));
var fileName = path.basename(file.path);
var childControllerPath = 'src/themes/' + config.settings.theme + '/app/' + pathInTheme + '/_' + fileName;
var matchChildController = glob.sync(childControllerPath);
return matchChildController.length !== 0;
}
/**
* Prefix controller name with _
*/
function renameBaseController(file) {
var regex = /\.controller\(['"]([^'"]+)['"]/;
var content = file.contents.toString();
file.contents = new Buffer(content.replace(regex, '.controller(\'_$1\''));
}
/**
* Returns an array of file paths from file globs
* Removes files from result that should be overwritten in a theme
*/
function filterOverwrittenFiles(src) {
var sourceFiles = globArray.sync(src);
var themeRoot = './src/themes/' + config.settings.theme + '/app';
var themeFiles = sourceFiles.filter(function(filePath) {
var themeRootMatch = filePath.substring(0, themeRoot.length);
return themeRootMatch === themeRoot;
});
themeFiles.forEach(function(filePath) {
var baseFilePath = filePath.replace('/src/themes/' + config.settings.theme + '/app', '/src/app');
var matchBaseFile = sourceFiles.indexOf(baseFilePath);
if (matchBaseFile !== -1) {
sourceFiles.splice(matchBaseFile, 1);
}
});
return sourceFiles;
}