54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
var Promise = require("bluebird");
|
|
var fs = require("fs");
|
|
var delAsync = Promise.promisify(require("del"));
|
|
var exec = Promise.promisify(require('child_process').exec);
|
|
var ncp = Promise.promisify(require('ncp').ncp);
|
|
|
|
var local = 'tmp';
|
|
var repo = 'https://github.com/taigaio/taiga-front';
|
|
|
|
var action = (function cloneOrPull(){
|
|
var cloned = fs.existsSync(local);
|
|
|
|
if (cloned) {
|
|
action = 'cd ' + local + ' && git pull';
|
|
} else {
|
|
action = 'git clone ' + repo + ' ' + local;
|
|
}
|
|
|
|
return action;
|
|
}())
|
|
|
|
exec(action)
|
|
.then(function() {
|
|
//remove old tmp dist
|
|
return delAsync(local + '/dist');
|
|
})
|
|
.then(function() {
|
|
//compile taiga
|
|
return exec('cd ' + local + ' && npm install && bower install && gulp deploy');
|
|
})
|
|
.then(function() {
|
|
//remove old dist
|
|
return delAsync('dist');
|
|
})
|
|
.then(function() {
|
|
//copy new dist
|
|
return ncp(local + '/dist/', 'dist');
|
|
})
|
|
.then(function() {
|
|
//get last commit id
|
|
return exec('cd ' + local + ' && git rev-parse HEAD');
|
|
})
|
|
.then(function(lastCommitId) {
|
|
//commit
|
|
lastCommitId = lastCommitId[0].trim();
|
|
|
|
return exec('git add -A && git commit -am "' + lastCommitId + '"');
|
|
})
|
|
.then(function() {
|
|
//push
|
|
return exec('git push origin master');
|
|
})
|
|
.done();
|