-
Notifications
You must be signed in to change notification settings - Fork 28
/
gulpfile.js
78 lines (64 loc) · 2.28 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
const yargs = require('yargs/yargs')
const { hideBin } = require('yargs/helpers')
const argv = yargs(hideBin(process.argv)).argv;
const { exec } = require('child_process');
const fs = require('fs-extra');
const gulp = require('gulp');
const concat = require('gulp-concat');
const terser = require('gulp-terser');
const mergeStreams = require('merge-stream');
const cleanCSS = require('gulp-clean-css');
const axios = require('axios').default;
const assets = fs.readJsonSync('./src/asset-map.json');
let compileLocation = 'assets/compiled';
async function fetchSpecRefs(){
return Promise.all([
axios.get('https://raw.githubusercontent.com/tobie/specref/master/refs/ietf.json'),
axios.get('https://raw.githubusercontent.com/tobie/specref/master/refs/w3c.json'),
axios.get('https://raw.githubusercontent.com/tobie/specref/master/refs/whatwg.json')
]).then(async results => {
let json = Object.assign(results[0].data, results[1].data, results[2].data);
return fs.outputFile(compileLocation + '/refs.json', JSON.stringify(json));
}).catch(e => console.log(e));
}
async function compileAssets(){
await fs.ensureDir(compileLocation);
return new Promise(resolve => {
mergeStreams(
gulp.src(assets.head.css)
.pipe(cleanCSS())
.pipe(concat('head.css'))
.pipe(gulp.dest(compileLocation)),
gulp.src(assets.head.js)
.pipe(terser())
.pipe(concat('head.js'))
.pipe(gulp.dest(compileLocation)),
gulp.src(assets.body.js)
.pipe(terser())
.pipe(concat('body.js'))
.pipe(gulp.dest(compileLocation))
).on('finish', function() {
resolve();
})
});
}
function runCommand(cmd){
return new Promise((resolve, reject) => {
exec(cmd, {}, error => error ? reject() : resolve());
});
}
async function bumpVersion(){
return runCommand(`npm version --no-git-tag-version ${ argv.v || 'patch' }`);
}
async function renderSpecs(){
return runCommand('npm run render');
}
gulp.task('render', renderSpecs);
gulp.task('refs', fetchSpecRefs);
gulp.task('compile', compileAssets);
gulp.task('bump', bumpVersion);
gulp.task('publish', gulp.series(gulp.parallel(compileAssets, bumpVersion), renderSpecs));
gulp.task('watch', () => gulp.watch([
'assets/**/*',
'!assets/compiled/*'
], gulp.parallel('compile')));