//@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
}
