ant-design/deploy.js

12 lines
180 B
JavaScript
Raw Normal View History

2015-06-19 18:19:30 +08:00
var buildBranch = require('buildBranch');
buildBranch({
branch: 'gh-pages',
folder: '_site'
}, function(err) {
if(err) {
throw err;
}
console.log('Published!');
});