pabala-biu
Version:
Changelogs
27 lines (20 loc) • 368 B
text/typescript
//@ts-nocheck
import build from './rollup';
const command = `pack`;
const aliases = ['pack','-p'];
const desc = 'Library模块打包命令';
const builder = (yargs:any) => {
};
const handler = async function (argv:any) {
const {
configPath,
} = argv;
build()
};
export default {
command,
desc,
builder,
handler,
aliases
}