mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
25 lines
591 B
JavaScript
25 lines
591 B
JavaScript
|
/**
|
|||
|
* 将 demo 迁移到临时文件夹,以供 v5-site-upgrade 使用。
|
|||
|
* 升级 v5 完毕后可删除。
|
|||
|
*/
|
|||
|
|
|||
|
const glob = require('glob');
|
|||
|
const fs = require('fs-extra');
|
|||
|
const path = require('path');
|
|||
|
|
|||
|
const tmpFolder = `~demo`;
|
|||
|
|
|||
|
glob('components/*/demo/*', (er, files) => {
|
|||
|
// console.log(files);
|
|||
|
fs.ensureDirSync(tmpFolder);
|
|||
|
fs.emptyDirSync(tmpFolder);
|
|||
|
|
|||
|
files.forEach(file => {
|
|||
|
const tmpFilePath = path.resolve(tmpFolder, file);
|
|||
|
const tmpFolderPath = path.dirname(tmpFilePath);
|
|||
|
fs.ensureDirSync(tmpFolderPath);
|
|||
|
|
|||
|
fs.copyFileSync(file, tmpFilePath);
|
|||
|
});
|
|||
|
});
|