mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
|
var buildBranch = require('buildBranch');
|
||
|
|
||
|
buildBranch({
|
||
|
branch: 'gh-pages',
|
||
|
folder: '_site'
|
||
|
}, function(err) {
|
||
|
if(err) {
|
||
|
throw err;
|
||
|
}
|
||
|
console.log('Published!');
|
||
|
});
|