This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
executable file
·478 lines (371 loc) · 9.85 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
/**
* Settings
* Turn on/off build features
*/
var settings = {
clean: true,
scripts: true,
polyfills: true,
styles: true,
svgs: false,
pngs: false,
jpgs: false,
imgs: true,
fonts: true,
copy: true,
reload: true,
};
/**
* Paths to project folders
*/
var paths = {
input: '_source',
output: 'assets',
viewerapp: {
input: '_source/viewer/build/**/*',
exclude: '!_source/viewer/build/index.html',
output: 'viewer/',
extract: '_source/viewer/build/index.html',
scriptdest: '_includes/viewer/',
mediain: '_source/viewer/build/static/media/**/*',
mediaout: 'static/media/'
},
scripts: {
input: '_source/js/*',
polyfills: '.polyfill.js',
output: 'assets/js/'
},
styles: {
input: '_source/css/**/*.{scss,sass}',
output: 'assets/css/'
},
imgs: {
input: '_source/img/**/*',
output: 'assets/img'
},
svgs: {
input: '_source/img/svg/**/*.svg',
output: 'assets/img/svg/'
},
pngs: {
input: '_source/img/png/**/*.png',
output: 'assets/img/png/'
},
jpgs: {
input: '_source/img/jpg/**/*.jpg',
output: 'assets/img/jpg/'
},
fonts: {
input: '_source/fonts/**/*',
output: 'assets/fonts'
},
copy: {
input: '_source/copy/**/*',
output: 'assets/'
},
reload: './_build/'
};
/**
* Template for banner to add to file headers
*/
var banner = {
full:
'/*!\n' +
' * <%= package.name %> v<%= package.version %>\n' +
' * <%= package.description %>\n' +
' * (c) ' + new Date().getFullYear() + ' <%= package.author.name %>\n' +
' * <%= package.license %> License\n' +
' * <%= package.repository.url %>\n' +
' */\n\n',
min:
'/*!' +
' <%= package.name %> v<%= package.version %>' +
' | (c) ' + new Date().getFullYear() + ' <%= package.author.name %>' +
' | <%= package.license %> License' +
' | <%= package.repository.url %>' +
' */\n'
};
/**
* Gulp Packages
*/
// General
var { gulp, src, dest, watch, series, parallel } = require('gulp');
var del = require('del');
var flatmap = require('gulp-flatmap');
var lazypipe = require('lazypipe');
var rename = require('gulp-rename');
var header = require('gulp-header');
var extract = require('gulp-html-extract');
var extractText = require('gulp-extract-text');
var replace = require('gulp-replace');
var package = require('./package.json');
// Scripts
var jshint = require('gulp-jshint');
var stylish = require('jshint-stylish');
var concat = require('gulp-concat');
var uglify = require('gulp-terser');
var optimizejs = require('gulp-optimize-js');
// Styles
var sass = require('gulp-sass');
var prefix = require('gulp-autoprefixer');
var minify = require('gulp-cssnano');
// SVGs
var svgmin = require('gulp-svgmin');
// BrowserSync
var browserSync = require('browser-sync');
// Child Process
const cp = require("child_process");
/**
* Gulp Tasks
*/
// Remove pre-existing content from output folders
var cleanDist = function (done) {
// Make sure this feature is activated before running
if (!settings.clean) return done();
// Clean the build folder
del.sync([
paths.output + "/*"
], { force: true });
// Signal completion
return done();
};
// Repeated JavaScript tasks
var jsTasks = lazypipe()
.pipe(header, banner.full, { package: package })
.pipe(optimizejs)
.pipe(dest, paths.scripts.output)
.pipe(rename, { suffix: '.min' })
.pipe(uglify)
.pipe(optimizejs)
.pipe(header, banner.min, { package: package })
.pipe(dest, paths.scripts.output);
// Lint, minify, and concatenate scripts
var buildScripts = function (done) {
// Make sure this feature is activated before running
if (!settings.scripts) return done();
// Run tasks on script files
return src(paths.scripts.input)
.pipe(flatmap(function (stream, file) {
// If the file is a directory
if (file.isDirectory()) {
// Setup a suffix variable
var suffix = '';
// If separate polyfill files enabled
if (settings.polyfills) {
// Update the suffix
suffix = '.polyfills';
// Grab files that aren't polyfills, concatenate them, and process them
src([file.path + '/*.js', '!' + file.path + '/*' + paths.scripts.polyfills])
.pipe(concat(file.relative + '.js'))
.pipe(jsTasks());
}
// Grab all files and concatenate them
// If separate polyfills enabled, this will have .polyfills in the filename
src(file.path + '/*.js')
.pipe(concat(file.relative + suffix + '.js'))
.pipe(jsTasks());
return stream;
}
// Otherwise, process the file
return stream.pipe(jsTasks());
}));
};
// Lint scripts
var lintScripts = function (done) {
// Make sure this feature is activated before running
if (!settings.scripts) return done();
// Lint scripts
return src(paths.scripts.input)
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'));
};
// Process, lint, and minify Sass files
var buildStyles = function (done) {
// Make sure this feature is activated before running
if (!settings.styles) return done();
// Run tasks on all Sass files
return src(paths.styles.input)
.pipe(dest(paths.styles.output));
};
// Copy IMG files. Use in place of buildSVGs, buildJPGs and buildPNG below.
// It is assumed that images are pre-optimized.
// Copy PNG files
var buildIMGs = function (done) {
// Make sure this feature is activated before running
if (!settings.imgs) return done();
return src(paths.imgs.input)
.pipe(dest(paths.imgs.output));
};
// Optimize SVG files
var buildSVGs = function (done) {
// Make sure this feature is activated before running
if (!settings.svgs) return done();
// Optimize SVG files
return src(paths.svgs.input)
.pipe(svgmin())
.pipe(dest(paths.svgs.output));
};
// Copy PNG files
var buildPNGs = function (done) {
// Make sure this feature is activated before running
if (!settings.pngs) return done();
// Copy PNG files
return src(paths.pngs.input)
.pipe(dest(paths.pngs.output));
};
// Copy JPG files
var buildJPGs = function (done) {
// Make sure this feature is activated before running
if (!settings.jpgs) return done();
// Copy JPGs
return src(paths.jpgs.input)
.pipe(dest(paths.jpgs.output));
};
// Copy Font Files
var buildFonts = function (done) {
// Make sure this feature is activated before running
if (!settings.fonts) return done();
// Optimize SVG files
return src(paths.fonts.input)
.pipe(dest(paths.fonts.output));
};
// Copy theme-specific static files into output folder
var copyFiles = function (done) {
// Make sure this feature is activated before running
if (!settings.copy) return done();
// Copy static files
return src(paths.copy.input)
.pipe(dest(paths.copy.output));
};
// The React component is currently a standalone web app,
// with its assets (including styles, scripts and media)
// bundled. This process is designed to integrate the React app
// with Jekyll without resorting to an iframe approach, so it
// can share common styles etc.
// It's a bit hackeriffic. It currently copies the all the react
// supporting files into their place in the site structure. It
// omits the index.html file, which is then processed
// by the extractViewerScripts process below. This script
// extracts the <body> content and places it as a snippet
// in Jekyll's _include folder, to be bundled into the viewer
// page. Some re-pathing needs to happen to load the scripts.
// One exception is media files, whose paths are generated in
// React itself. Since the goal is to have the React app function
// as a standalone and as a component, these files are copied rather
// than modifying the app.
var copyViewerComponent = function (done) {
del.sync([
paths.viewerapp.mediaout
], { force: true });
del.sync([
paths.viewerapp.output
], { force: true });
var mediacopy = src(paths.viewerapp.mediain)
.pipe(dest(paths.viewerapp.mediaout));
return src([paths.viewerapp.input, paths.viewerapp.exclude])
.pipe(dest(paths.viewerapp.output));
}
var extractViewerScripts = function (done) {
// Delete the viewer include
del.sync([
paths.viewerapp.scriptdest
], { force: true });
// Replace with body content of React component
return src(paths.viewerapp.extract)
.pipe(extractText({
pattern_start: "<body>",
pattern_end: "</body>"
}))
.pipe(dest(paths.viewerapp.scriptdest));
}
// Build Jekyll
// Jekyll
function jekyll() {
return cp.spawn("bundle", ["exec", "jekyll", "build", "--config", "_config.yml"], { stdio: "inherit" });
}
// Jekyll FV Local
function jekyllLocal() {
return cp.spawn("bundle", ["exec", "jekyll", "build", "--config", "_config.yml,_local_config.yml"], { stdio: "inherit" });
}
// Watch for changes to the source directory
var startServer = function (done) {
// Make sure this feature is activated before running
if (!settings.reload) return done();
// Initialize BrowserSync
browserSync.init({
server: {
baseDir: paths.reload
}
});
// Signal completion
done();
};
// Reload the browser when files change
var reloadBrowser = function (done) {
if (!settings.reload) return done();
browserSync.reload();
done();
};
// Watch for changes
var watchSrc = function (done) {
watch(paths.input, series(exports.default, jekyll, reloadBrowser));
done();
};
// Watch for changes
var watchLocalSrc = function (done) {
watch(paths.input, series(exports.default, jekyllLocal, reloadBrowser));
done();
};
/**
* Export Tasks
*/
// Default task
// gulp
exports.default = series(
cleanDist,
parallel(
buildScripts,
lintScripts,
buildStyles,
buildIMGs,
buildSVGs,
buildPNGs,
buildJPGs,
buildFonts,
copyFiles,
copyViewerComponent,
extractViewerScripts
)
);
exports.buildViewer = series(
copyViewerComponent,
extractViewerScripts
);
exports.build = series(
exports.default,
jekyll
);
exports.buildLocal = series(
exports.default,
jekyllLocal
);
exports.sass = series(
buildStyles
);
exports.js = series(
buildScripts,
lintScripts
);
// Watch and reload
// gulp watch
exports.watch = series(
exports.default,
jekyll,
startServer,
watchSrc
);
exports.watchLocal = series(
exports.default,
jekyllLocal,
watchLocalSrc
)