-
Notifications
You must be signed in to change notification settings - Fork 4
/
gulpfile.js
74 lines (55 loc) · 1.31 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
const { resolve: resolvePath } = require('path');
const gulp = require('gulp');
const deploy = require('gulp-gh-pages');
const del = require('del');
const { ncp } = require('ncp');
const tempDeployPath = resolvePath(`${__dirname}/.deploy`);
const publishPath = resolvePath(`${__dirname}/.publish`);
const demoPath = resolvePath(`${__dirname}/demo`);
gulp.task('default', function (callback) {
callback();
});
module.exports = {
'demo:deploy': gulp.series(
demoBeforeDeploy,
demoDeploy,
deployClearTemp,
),
};
/**
* Clears temp directory.
*/
function deployClearTemp () {
return del([
tempDeployPath,
publishPath,
]);
}
function demoBeforeDeploy(done) {
// Cleaning temp directories and making a temp copy
deployClearTemp().then(
() => makeTempCopy(done)
);
/**
* Makes a temporary copy of the demos directory with symlinks resolved.
*
* @param {function} callback
*/
function makeTempCopy (callback) {
ncp(demoPath, tempDeployPath, {
dereference: true
}, error => {
if (error) {
return console.error(error);
}
console.log('Temporary copy created!');
callback();
});
}
}
function demoDeploy() {
console.log('Starting to deploy files...');
return gulp.src(tempDeployPath + '/**/*')
.pipe(deploy())
;
}