mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
17 lines
353 B
JavaScript
17 lines
353 B
JavaScript
/* eslint strict: 0, no-console: 0 */
|
|
'use strict';
|
|
|
|
const ghPages = require('gh-pages');
|
|
const path = require('path');
|
|
ghPages.publish(path.join(process.cwd(), '_site'), {
|
|
depth: 1,
|
|
logger(message) {
|
|
console.log(message);
|
|
}
|
|
}, (err) => {
|
|
if (err) {
|
|
throw err;
|
|
}
|
|
console.log('Site has been published to http://ant.design 🎉');
|
|
});
|