const fs = require('fs-extra');
const sourcePath = './sdk';
const destinationPath = '../saas-web/node_modules/fastlion-amis/sdk';
fs.copy(sourcePath, destinationPath, (err) => {
if (err) {
console.error('复制失败:', err);
} else {
console.log('复制成功');
}
});