mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-06-14 09:49:12 +08:00
32 lines
477 B
TypeScript
32 lines
477 B
TypeScript
const ARG_COMMON = {
|
|
'--help': Boolean,
|
|
'-h': '--help',
|
|
|
|
'--platform-version': Number,
|
|
'-V': '--platform-version',
|
|
|
|
'--debug': Boolean,
|
|
'-d': '--debug',
|
|
|
|
'--token': String,
|
|
'-t': '--token',
|
|
|
|
'--scope': String,
|
|
'-S': '--scope',
|
|
|
|
'--team': String,
|
|
'-T': '--team',
|
|
|
|
'--local-config': String,
|
|
'-A': '--local-config',
|
|
|
|
'--global-config': String,
|
|
'-Q': '--global-config',
|
|
|
|
'--api': String,
|
|
|
|
'--target': String
|
|
};
|
|
|
|
export default () => ARG_COMMON;
|