-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
474 lines (400 loc) · 12 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
/* eslint no-sync: "off", no-console: "off" */
const exec = require('child_process').exec;
const fs = require('fs');
const gulp = require('gulp');
const autoprefixer = require('gulp-autoprefixer');
const babel = require('gulp-babel');
const cleanCSS = require('gulp-clean-css');
const eslint = require('gulp-eslint-new');
const isFixed = require('gulp-eslint-if-fixed');
const header = require('gulp-header');
const gulpif = require('gulp-if');
const include = require('gulp-include');
const rename = require('gulp-rename');
const replace = require('gulp-replace');
const sass = require('gulp-sass')(require('sass'));
const sassLint = require('gulp-sass-lint');
const uglify = require('gulp-uglify');
const lunr = require('lunr');
const merge = require('merge');
const path = require('path');
let config = {
src: {
scssPath: './src/scss',
jsPath: './src/js',
fontPath: './src/fonts'
},
dist: {
cssPath: './dist/css',
jsPath: './dist/js',
fontPath: './dist/fonts'
},
docs: {
src: {
scssPath: './_docs/_src/scss',
jsPath: './_docs/_src/js'
},
dist: {
cssPath: './_docs/static/css',
fontPath: './_docs/static/fonts',
jsPath: './_docs/static/js'
},
dataPath: './_docs/_data',
srcPath: './_docs/_src',
distPath: './_docs/static',
rootPath: './_docs'
},
docsLocalPath: './docs-local',
ghPagesPath: './docs',
examplesPath: './_examples',
packagesPath: './node_modules',
pkg: getAthenaPackage(),
prj: {
yearRange: getAthenaYearRange(),
header: getAthenaHeader()
},
sync: false,
syncOptions: {},
examplesCSSKey: '',
examplesBaseURL: '/examples',
docSync: false,
docSyncOptions: {},
docBaseURL: '/docs-local'
};
if (fs.existsSync('./gulp-config.json')) {
const overrides = JSON.parse(fs.readFileSync('./gulp-config.json'));
config = merge(config, overrides);
}
//
// Helper functions
//
// Base scss linting function
// NOTE: see global linter rules and excluded files in .sass-lint.yml
function lintSCSS(src) {
return gulp.src(src)
.pipe(sassLint())
.pipe(sassLint.format())
.pipe(sassLint.failOnError());
}
// Compile scss files
function buildCSS(src, filename, dest, applyHeader) {
dest = dest || config.dist.cssPath;
applyHeader = applyHeader || false;
return gulp.src(src)
.pipe(sass({
includePaths: [config.src.scssPath, config.packagesPath]
})
.on('error', sass.logError))
.pipe(cleanCSS())
.pipe(autoprefixer({
// Supported browsers added in package.json ("browserslist")
cascade: false
}))
.pipe(gulpif(applyHeader, header(config.prj.header, {
config: config
})))
// Remove charset rule (if present) and add to the first
// line of the stylesheet (@charset must be on the first line)
.pipe(replace('@charset "UTF-8";', ''))
.pipe(header('@charset "UTF-8";\n'))
.pipe(rename(filename))
.pipe(gulp.dest(dest));
}
// Base JS linting function (with eslint). Fixes problems in-place.
// NOTE: see global linter rules in .eslintrc.json and excluded files
// in .eslintignore
function lintJS(src, dest) {
dest = dest || config.src.jsPath;
return gulp.src(src)
.pipe(eslint({
fix: true
}))
.pipe(eslint.format())
.pipe(isFixed(dest));
}
// Concat and uglify js files through babel
function buildJS(src, filename, dest, applyHeader, forceIncludePaths) {
dest = dest || config.dist.jsPath;
applyHeader = applyHeader || false;
forceIncludePaths = forceIncludePaths || false;
return gulp.src(src)
.pipe(gulpif(
forceIncludePaths,
include({
includePaths: [
path.dirname(src),
__dirname,
config.packagesPath
]
}),
include()
))
.on('error', console.log) // eslint-disable-line no-console
.pipe(babel())
.pipe(uglify({
output: {
// try to preserve non-standard headers (e.g. from objectFitPolyfill)
comments: /^(!|---)/
}
}))
.pipe(gulpif(applyHeader, header(config.prj.header, {
config: config
})))
.pipe(rename(filename))
.pipe(gulp.dest(dest));
}
// Generates a search index for the documentation.
function buildDocsIndex(dataPath, indexPath, done) {
dataPath = dataPath || `${config.docsLocalPath}/search-data.json`;
indexPath = indexPath || `${config.docsLocalPath}/search-index.json`;
const documents = JSON.parse(fs.readFileSync(dataPath));
// Generate index
const idx = lunr(function () {
this.ref('id');
this.field('title');
documents.forEach(function (doc) {
this.add(doc);
}, this);
});
const searchIndex = JSON.stringify(idx);
// Save search index
fs.writeFileSync(indexPath, searchIndex);
done();
}
//
// Header/metadata appending
//
function getAthenaPackage() {
return JSON.parse(fs.readFileSync('./package.json'));
}
function getAthenaYearRange() {
let year = '';
const startYear = 2017;
const currentYear = new Date().getFullYear();
if (startYear === currentYear) {
year += startYear;
} else {
year += `${startYear}-${currentYear}`;
}
return year;
}
function getAthenaHeader() {
return ['/*!',
' * Athena Framework v<%= config.pkg.version %> (<%= config.pkg.homepage %>)',
' * Copyright <%= config.prj.yearRange %> <%= config.pkg.author.name %>',
' * Licensed under <%= config.pkg.license %>',
' */',
''].join('\n');
}
//
// Installation of components/dependencies
//
// Web font processing
gulp.task('move-components-font-sans-serif', () => {
return gulp.src([
`${config.src.fontPath}/ucf-sans-serif-alt/*`,
`!${config.src.fontPath}/ucf-sans-serif-alt/generator_config.txt`
])
.pipe(gulp.dest(`${config.dist.fontPath}/ucf-sans-serif-alt`));
});
gulp.task('move-components-font-condensed', () => {
return gulp.src([
`${config.src.fontPath}/ucf-condensed-alt/*`,
`!${config.src.fontPath}/ucf-condensed-alt/generator_config.txt`
])
.pipe(gulp.dest(`${config.dist.fontPath}/ucf-condensed-alt`));
});
gulp.task('move-components-font-slab-serif', () => {
return gulp.src([
`${config.src.fontPath}/tulia/*`,
`!${config.src.fontPath}/tulia/generator_config.txt`
])
.pipe(gulp.dest(`${config.dist.fontPath}/tulia`));
});
gulp.task('move-components-fonts', gulp.parallel(
'move-components-font-sans-serif',
'move-components-font-condensed',
'move-components-font-slab-serif'
));
// Run all component-related tasks
gulp.task('components', gulp.parallel('move-components-fonts'));
//
// CSS
//
// Lint scss files. Do not perform linting on vendor scss files.
gulp.task('scss-lint', () => {
return lintSCSS(`${config.src.scssPath}/**/*.scss`);
});
// Compile framework scss files
gulp.task('scss-build', () => {
return buildCSS(`${config.src.scssPath}/framework.scss`, 'framework.min.css', config.dist.cssPath, true);
});
// All css-related tasks
gulp.task('css', gulp.series('scss-lint', 'scss-build'));
//
// JavaScript
//
// Run eslint on js files in src.jsPath. Do not perform linting
// on vendor js files. See .eslintignore for globally ignored files.
gulp.task('es-lint', () => {
return lintJS(`${config.src.jsPath}/*.js`, config.src.jsPath);
});
// Concat and uglify framework js files through babel
gulp.task('js-build', () => {
return buildJS(`${config.src.jsPath}/framework.js`, 'framework.min.js', config.dist.jsPath, true, true);
});
// All js-related tasks
gulp.task('js', gulp.series('es-lint', 'js-build'));
//
// GitHub Pages Build
//
// Generates a Jekyll config file based off of the project's package.json for
// the project docs.
// Allows us to not have to re-define values such as the project version number
// within Jekyll.
gulp.task('docs-config', () => {
return gulp.src('./package.json')
.pipe(gulp.dest(config.docs.dataPath));
});
// Web font processing
gulp.task('docs-move-components-athena-fonts', () => {
return gulp.src(`${config.dist.fontPath}/**/*`)
.pipe(gulp.dest(config.docs.dist.fontPath));
});
// All component-related tasks for docs
gulp.task('docs-components', gulp.series('docs-move-components-athena-fonts'));
// Process scss files
gulp.task('docs-scss', () => {
return buildCSS(`${config.docs.src.scssPath}/docs.scss`, 'docs.min.css', config.docs.dist.cssPath, true);
});
// Concat and uglify js files through babel
gulp.task('docs-js', () => {
return buildJS(`${config.docs.src.jsPath}/docs.js`, 'docs.min.js', config.docs.dist.jsPath, false, true);
});
// Default task for docs. Runs all preliminary docs-related tasks that do not
// actually build the docs.
gulp.task('docs-default', gulp.series('docs-config', 'docs-components', gulp.parallel('docs-scss', 'docs-js')));
// Generates a new local build of the docs.
gulp.task('docs-local-build', gulp.series(
gulp.series('docs-default'),
(done) => {
exec(
'ELEVENTY_ENV=development npx @11ty/eleventy',
{
cwd: `${__dirname}/_docs`
},
(error, stdout, stderr) => {
console.log(stdout);
done(error);
}
);
}
));
// Generates a search index for the documentation's search feature.
gulp.task('docs-local-index', (done) => {
return buildDocsIndex(`${config.docsLocalPath}/search-data.json`, `${config.docsLocalPath}/search-index.json`, done);
});
// Run all local documentation-related tasks.
gulp.task('docs-local', gulp.series('docs-local-build', 'docs-local-index'));
// Spins up a new environment for previewing changes to the docs.
// Watches for file changes.
gulp.task('docs-watch', () => {
gulp.watch(
[
`${config.docs.src.scssPath}/**/*.scss`,
`${config.src.scssPath}/**/*.scss`
],
gulp.series('docs-scss')
);
gulp.watch(
[
`${config.docs.src.jsPath}/**/*.js`,
`${config.src.jsPath}/**/*.js`
],
gulp.series('docs-js')
);
// TODO make optional with gulp-config setting?
return exec(
'npx @11ty/eleventy --serve',
{
cwd: `${__dirname}/_docs`
}
).stdout.on('data', (data) => {
console.log(data);
});
});
// Generates a new production-ready build of the docs.
gulp.task('gh-pages-build', gulp.series(
'docs-default',
(done) => {
exec(
'ELEVENTY_ENV=production npx @11ty/eleventy',
{
cwd: `${__dirname}/_docs`
},
(error, stdout, stderr) => {
console.log(stdout);
done(error);
}
);
}
));
// Generates a search index for production-ready documentation.
gulp.task('gh-pages-index', (done) => {
buildDocsIndex(`${config.ghPagesPath}/search-data.json`, `${config.ghPagesPath}/search-index.json`, done);
});
// Runs all tasks necessary to generate production-ready (Github Pages)
// documentation.
gulp.task('gh-pages', gulp.series('gh-pages-build', 'gh-pages-index'));
//
// Local examples build
//
// Generates a custom local config file for the example files.
gulp.task('examples-config', (done) => {
const localConfig = [
'{',
`"cloud_typography_key": "${config.examplesCSSKey}"`,
'}'
].join('\n');
fs.writeFileSync(`${config.examplesPath}/_data/config.json`, localConfig);
done();
});
// Generates a new local build of example files.
gulp.task('examples-build', (done) => {
exec(
'npx @11ty/eleventy',
{
cwd: `${__dirname}/_examples`
},
(error, stdout, stderr) => {
console.log(stdout);
done(error);
}
);
});
// All examples-related tasks.
gulp.task('examples', gulp.series('examples-config', 'examples-build'));
//
// Rerun tasks when files change.
//
gulp.task('watch', () => {
gulp.watch(`${config.src.scssPath}/**/*.scss`, gulp.series('css'));
gulp.watch(`${config.src.jsPath}/**/*.js`, gulp.series('js'));
// TODO make optional with gulp-config setting?
return exec(
'npx @11ty/eleventy --serve',
{
cwd: `${__dirname}/_examples`
}
).stdout.on('data', (data) => {
console.log(data);
});
});
//
// Default task
//
gulp.task('default', gulp.series('components', 'css', 'js'));
//
// Initial setup task for the project
//
gulp.task('setup', gulp.series('default', 'docs-local', 'examples'));