Files
now-deployment/node_modules/now/dist/util/arg-common.ts
2019-10-17 12:36:15 +09:00

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;