UNPKG

powerful-cli

Version:

封装了webpack功能的命令行接口, 提供serve、build、lib等命令, 支持vue3、js、ts等...

17 lines (13 loc) 257 B
#!/usr/bin/env node import Service from '../util/Service.js'; import parseArgv from 'minimist'; const args=parseArgv(process.argv.slice(2),{ string:[ 'mode', ], boolean:[ ], default:{ }, }); new Service(process.cwd(),args).run();