-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
413 lines (360 loc) · 11.3 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
/*jshint node: true */
var args = require('yargs').argv;
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 $ = require('gulp-load-plugins')({
lazy: true
});
/**
* 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');
if (config.isEnvProduction) {
if (config.configFile !== 'prod') {
logBody('When `env=prod` we enforce that `config=prod`', 1, 'red');
}
config.configFile = 'prod';
}
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);
}
/**
* Read the settings from the right file
*/
function readConfig(configFile) {
return JSON.parse(fs.readFileSync('./config/' + configFile + '.json', 'utf8'));
}
/**
* 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(config.scripts.app)
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish'));
});
/**
* Remove all build / temp files
*/
gulp.task('clean', function clean(done) {
del([config.build], 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_emails',
]);
/**
* Compile all javascript
*/
gulp.task('compile_scripts', ['compile_scripts_app', 'compile_scripts_lib']);
gulp.task('compile_scripts_app', function compile_scripts_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(config.scripts.app)
.pipe($.plumber(handleError))
.pipe($.uglify(config.uglifySettings))
.pipe($.plumber.stop())
.pipe($.concat('main.js'))
.pipe(gulp.dest(config.build + 'scripts'));
} else {
return gulp.src(config.scripts.app)
.pipe($.concat('main.js'))
.pipe(gulp.dest(config.build + 'scripts'));
}
});
gulp.task('compile_scripts_lib', function compile_scripts_lib() {
return gulp.src(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(config.html.root)
.pipe($.replaceTask(replacePattern))
.pipe($.changed(config.build))
.pipe(gulp.dest(config.build));
});
gulp.task('compile_html_nonroot', function compile_html_nonroot() {
return gulp.src(config.html.nonRoot)
.pipe($.changed(config.build + 'views/'))
.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(robotPath)
.pipe($.rename('robots.txt'))
.pipe(gulp.dest(config.build));
});
/**
* Compile oddball files
*/
gulp.task('compile_misc', function compile_misc() {
return gulp.src(config.misc)
.pipe(gulp.dest(config.build));
});
/**
* Compile styles
* SASS -> CSS -> app.min.css
*/
gulp.task('compile_styles', function compile_styles() {
var isMinifyActive = config.isEnvProduction || config.isEnvStaging;
return gulp.src(config.styles.root)
.pipe($.sourcemaps.init())
.pipe($.sass(config.sassSettings).on('error', $.sass.logError))
.pipe($.sourcemaps.write())
.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(gulp.dest(config.build + '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(config.media)
.pipe($.changed(mediaBuild))
.pipe($.if(isMinifyActive, $.imagemin()))
.pipe(gulp.dest(mediaBuild));
});
/**
* Move fonts
*/
gulp.task('compile_fonts', function compile_fonts() {
return gulp.src(config.fonts)
.pipe(gulp.dest(config.build + 'fonts/'));
});
/**
* Inline css for emails
*/
gulp.task('compile_emails', function compile_emails() {
var css = fs.readFileSync('./src/email/css.css').toString();
var mqCss = siphonMQ(css);
return gulp.src(config.email)
.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('./src/email'));
});
/**
* Watch files for changes and compile
*/
gulp.task('serve_watch', function serve_watch() {
gulp.start('serve_server');
// App
gulp.watch(config.html.root, ['compile_html_root']);
gulp.watch(config.html.nonRoot, ['compile_html_nonroot']);
gulp.watch(config.styles.all, ['compile_styles']);
gulp.watch(config.scripts.lib, ['compile_scripts_lib']);
gulp.watch(config.scripts.ie, ['compile_scripts_ie']);
gulp.watch(config.scripts.app, ['compile_scripts_app']);
// Emails
gulp.watch(config.email, ['compile_emails']);
});
/**
* Starts a server in the build directory
*/
gulp.task('serve_server', function serve_server() {
var express = require('express');
var path = require('path');
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;
}