ant-design/scripts/deploy.js

12 lines
214 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;
}
2015-06-19 18:22:14 +08:00
console.log('Site has been published to http://ant.design');
2015-06-19 18:19:30 +08:00
});