This repository has been archived by the owner on Jun 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
416 lines (354 loc) · 11.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
'use strict';
// Include Gulp & tools we'll use
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var uglify = require('gulp-uglify-es').default;
var del = require('del');
var browserSync = require('browser-sync');
var reload = browserSync.reload;
var merge = require('merge-stream');
var path = require('path');
var fs = require('fs');
var historyApiFallback = require('connect-history-api-fallback');
var ensureFiles = require('./tasks/ensure-files.js');
var requireDir = require('require-dir');
requireDir('./tasks');
var replace = require('gulp-replace-task');
var taskList = require('gulp-task-listing');
var argv = require('yargs/yargs')(process.argv.slice(2));
var gutil = require('gulp-util');
var jshint = require('gulp-jshint');
var AUTOPREFIXER_BROWSERS = [
'ie >= 10',
'ie_mob >= 10',
'ff >= 30',
'chrome >= 34',
'safari >= 7',
'opera >= 23',
'ios >= 7',
'android >= 4.4',
'bb >= 10'
];
var DIST = 'dist';
var dist = function(subpath) {
return !subpath ? DIST : path.join(DIST, subpath);
};
var styleTask = function(stylesPath, srcs) {
return gulp.src(srcs.map(function(src) {
return path.join('app', stylesPath, src);
}))
//Concatenate all SASS files into 1 compiled CSS file
.pipe($.sass({style: 'expanded'}))
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
//Save a copy next to the original SASS file
.pipe(gulp.dest('app/' + stylesPath),{overwrite:true})
//Save it to a temp dir
.pipe(gulp.dest('.tmp/' + stylesPath),{overwrite:true})
//Minify the CSS
.pipe($.minifyCss())
//Copy it to the distribution folder
.pipe(gulp.dest(dist(stylesPath),{overwrite:true}))
.pipe($.size({title: stylesPath}))
;
};
var imageOptimizeTask = function(src, dest) {
return gulp.src(src)
.pipe($.imagemin({
progressive: true,
interlaced: true
}))
.pipe(gulp.dest(dest))
.pipe($.size({title: 'images'}));
};
var optimizeHtmlTask = function(src, dest) {
return gulp.src(src)
.pipe($.useref())
// Concatenate and minify JavaScript
.pipe($.if('*.js', uglify({
output: { comments: 'some' }
})))
// Concatenate and minify styles
// In case you are still using useref build blocks
.pipe($.if('*.css', $.minifyCss()))
.pipe($.useref())
// Minify any HTML
.pipe($.if('*.html', $.minifyHtml({
quotes: true,
empty: true,
spare: true
})))
// Output files
.pipe(gulp.dest(dest))
.pipe($.size({
title: 'html'
}))
;
};
// Compile and automatically prefix stylesheets
gulp.task('styles', function() {
return styleTask('styles', ['**/*.scss']);
});
gulp.task('elements', function() {
return styleTask('elements', ['**/*.css']);
});
// Ensure that we are not missing required files for the project
// "dot" files are specifically tricky due to them being hidden on
// some systems.
gulp.task('ensureFiles', function(cb) {
var requiredFiles = ['.bowerrc'];
ensureFiles(requiredFiles.map(function(p) {
return path.join(__dirname, p);
}), cb);
});
// Optimize images
gulp.task('images', function() {
return imageOptimizeTask('app/images/**/*', dist('images'));
});
// copy the js into the mode-modules where the components expect it
// (running from npm instead of bower to get security coverage from github)
gulp.task('npm_copy', function() {
gulp.src(['node_modules/validator/*'])
.pipe(gulp.dest('app/bower_components/validator'));
gulp.src(['node_modules/lodash/*'])
.pipe(gulp.dest('app/bower_components/uqlibrary-hours/node_modules/lodash'));
gulp.src(['node_modules/moment/*'])
.pipe(gulp.dest('app/bower_components/uqlibrary-hours/node_modules/moment'));
return gulp.src(['node_modules/lodash/*'])
.pipe(gulp.dest('app/bower_components/uqlibrary-computers/node_modules/lodash'));
});
// Copy all files at the root level (app)
gulp.task('copy_files', function() {
var app = gulp.src([
'app/*',
'!app/test',
'!app/elements',
'!app/bower_components',
'!**/.DS_Store'
], {
dot: true
}).pipe(gulp.dest(dist()));
// Copy over only the bower_components we need
// These are things which cannot be vulcanized
var bower = gulp.src([
'app/bower_components/{webcomponentsjs}/**/*'
]).pipe(gulp.dest(dist('bower_components')));
var bower = gulp.src([
'app/bower_components/uqlibrary-api/mock/**/*'
]).pipe(gulp.dest(dist('bower_components/uqlibrary-api/mock')));
var data = gulp.src([
'app/bower_components/uqlibrary-api/data/contacts.json'
]).pipe(gulp.dest(dist('bower_components/uqlibrary-api/data')));
return merge(app, bower, data)
.pipe($.size({
title: 'copy_files'
}));
});
// Copy web fonts to dist
gulp.task('fonts', function() {
return gulp.src(['app/fonts/**'])
.pipe(gulp.dest(dist('fonts')))
.pipe($.size({
title: 'fonts'
}));
});
// Scan your HTML for assets & optimize them
gulp.task('html', function() {
return optimizeHtmlTask(
['app/**/*.html', '!app/{elements,test,bower_components}/**/*.html'],
dist());
});
// update paths to bower_components for all components inside bower_components
gulp.task('clean_bower', function() {
var regEx = new RegExp("bower_components", "g");
return gulp.src('app/bower_components/**/*.html')
.pipe(replace({
patterns: [{ match: regEx, replacement: ".." }],
usePrefix: false
}))
.pipe(gulp.dest('app/bower_components'))
.pipe($.size({title: 'clean_bower'}));
});
// Vulcanize granular configuration
gulp.task('vulcanize', gulp.series(
'clean_bower',
'npm_copy',
function() {
var menuJson = fs.readFileSync('app/bower_components/uqlibrary-reusable-components/resources/uql-menu.json', 'utf8');
var regEx = new RegExp('menuJsonFileData;', 'g');
var contactsJson = fs.readFileSync('app/bower_components/uqlibrary-api/data/contacts.json', 'utf8');
var contactsRegEx = new RegExp('contactsJsonFileData;', 'g');
return gulp.src('app/elements/elements.html')
.pipe($.vulcanize({
stripComments: true,
inlineCss: true,
inlineScripts: true
}))
.on('error', function (err) {
process.exit(1);
})
.pipe($.crisper({
scriptInHead: false,
onlySplit: false
}))
//replace menu-json with value from resources/uql-menu.json
.pipe($.if('*.js', replace({
patterns: [{ match: regEx, replacement: menuJson + ';' }],
usePrefix: false
})))
//replace contacts.json with value from uqlibrary-api
.pipe($.if('*.js', replace({
patterns: [{ match: contactsRegEx, replacement: contactsJson + ';' }],
usePrefix: false
})))
// Minify js output - Erroring with:
// GulpUglifyError: unable to minify JavaScript
// Caused by: SyntaxError: Unexpected token: keyword (const)
.pipe($.if('*.js', uglify({
output: { comments: 'some' }
})))
// Minify html output
.pipe($.if('*.html', $.minifyHtml({
quotes: true,
empty: true,
spare: true
})))
.pipe(gulp.dest(dist('elements')))
.pipe($.size({title: 'vulcanize'}))
;
}));
// Clean output directory
gulp.task('clean', function() {
return del(['.tmp', dist()]);
});
// Watch files for changes & reload
gulp.task('serve', gulp.series('clean_bower', 'npm_copy', 'styles', 'elements', function(done) {
browserSync({
open: "external",
host: 'dev-app.library.uq.edu.au',
port: 9999,
notify: false,
logPrefix: 'UQL',
snippetOptions: {
rule: {
match: '<span id="browser-sync-binding"></span>',
fn: function(snippet) {
return snippet;
}
}
},
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: {
baseDir: ['.tmp', 'app'],
middleware: [historyApiFallback()]
}
});
gulp.watch(['app/**/*.html', '!app/bower_components/**/*.html'], reload);
gulp.watch(['app/styles/**/*.scss'], gulp.series('styles', reload));
gulp.watch(['app/elements/**/*.css'], gulp.series('elements', reload));
gulp.watch(['app/scripts/**/*.js'], reload);
gulp.watch(['app/images/**/*'], reload);
done();
}));
// Build production files, the default task
gulp.task('default', gulp.series(
'clean',
gulp.parallel('ensureFiles', 'copy_files', 'styles'),
'elements',
gulp.parallel('images', 'fonts', 'html'),
'vulcanize',
'inject-browser-update',
'inject-preloader',
'inject-ga-values',
'monkey-patch-paper-input',
'rev',
'monkey-patch-rev-manifest',
'rev-replace-polymer-fix',
'app-cache-version-update',
'rev-appcache-update',
'remove-rev-file',
function(cb) {
cb();
}
));
// Build and serve the output from the dist build
gulp.task('serve:dist', gulp.series('default', function(done) {
browserSync({
open: "external",
host: 'dev-app.library.uq.edu.au',
port: 5001,
notify: false,
logPrefix: 'UQL',
snippetOptions: {
rule: {
match: '<span id="browser-sync-binding"></span>',
fn: function(snippet) {
return snippet;
}
}
},
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: dist(),
middleware: [historyApiFallback()]
});
done();
}));
// gulp was not emitting an error to the shell script on its own - add this code to make the process stop if there is an error
// per https://gist.github.com/noahmiller/61699ad1b0a7cc65ae2d
// Command line option:
// --fatal=[warning|error|off]
var fatalLevel = argv.fatal;
var ERROR_LEVELS = ['error', 'warning'];
// Return true if the given level is equal to or more severe than
// the configured fatality error level.
// If the fatalLevel is 'off', then this will always return false.
// Defaults the fatalLevel to 'error'.
function isFatal(level) {
return ERROR_LEVELS.indexOf(level) <= ERROR_LEVELS.indexOf(fatalLevel || 'error');
}
// Handle an error based on its severity level.
// Log all levels, and exit the process for fatal levels.
function handleError(level, error) {
gutil.log(error.message);
if (isFatal(level)) {
process.exit(1);
}
}
// Convenience handler for error-level errors.
function onError(error) { handleError.call(this, 'error', error); }
// Convenience handler for warning-level errors.
function onWarning(error) { handleError.call(this, 'warning', error); }
var testfiles = ['error.js', 'warning.js'];
// Task that emits an error that's treated as a warning.
gulp.task('warning', function(done) {
gulp.src(testfiles)
.pipe(jshint())
.pipe(jshint.reporter('fail'))
.on('error', onWarning);
done();
});
// Task that emits an error that's treated as an error.
gulp.task('error', function(done) {
gulp.src(testfiles).
pipe(jshint()).
pipe(jshint.reporter('fail')).
on('error', onError);
done();
});
gulp.task('watch', function(done) {
// By default, errors during watch should not be fatal.
fatalLevel = fatalLevel || 'off';
gulp.watch(testfiles, ['error']);
done();
});
// Load tasks for web-component-tester
// Adds tasks for `gulp test:local` and `gulp test:remote`
require('web-component-tester').gulp.init(gulp);
// Load custom tasks from the `tasks` directory
require('require-dir')('tasks');
gulp.task('help', taskList);