读取 command
1 | import argParser from 'yargs-parser'; |
我的指令是配置在 package.json 中,为 "build": "rollup -c"
,它对应的 command
变量为
1 | command = { |
生成 options
1 | const { options } = await getConfigs(command); |
根据 options 进行 build
1 | const { options, warnings } = await getConfigs(command); |