-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpostpublish.js
82 lines (71 loc) · 2.05 KB
/
postpublish.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
'use strict';
var spawn = require('child_process').spawn;
var ghpages = require('gh-pages');
var path = require('path');
function getLatestCommitHash() {
var git = spawn('git', ['rev-parse', 'HEAD']);
return new Promise(function(resolve, reject) {
var hash = '';
git.stdout.on('data', function (data) {
hash = data.toString();
});
git.on('exit', function(exitCode){
if(exitCode === 0){
resolve(hash);
}else {
reject('Problem getting hash from latest commit');
}
});
});
}
function publishGhPages(src, options) {
options = options || {};
return new Promise(function(resolve, reject) {
ghpages.publish(src, options, function(err) {
err ? reject(err) : resolve(arguments);
});
});
}
function jekyllBuild() {
var jekyll = spawn('jekyll', ['build']);
return new Promise(function(resolve, reject) {
jekyll.on('exit', function(exitCode) {
if(exitCode === 0){
resolve();
}else {
reject('Problem generating js docs');
}
});
});
}
function buildJsDocs() {
var npm = spawn('npm', ['run', 'docs']);
return new Promise(function(resolve, reject){
npm.on('exit', function(exitCode) {
if(exitCode === 0){
resolve();
}else {
reject('Problem generating js docs');
}
});
});
}
var src = path.join(__dirname, '_gh_pages');
var log = console.log.bind(console);
jekyllBuild()
.then(function() {
return buildJsDocs();
})
.then(function() {
return getLatestCommitHash();
})
.then(function(hash){
log('Updating gh-pages to: ' + hash);
return publishGhPages(src, { message: 'Updating to: ' + hash });
})
.then(function(){
log('All done, gh-pages up to date with master!');
})
.catch(function() {
log('Error: there was a problem in updating the gh-pages branch');
});