mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
8 lines
297 B
JavaScript
8 lines
297 B
JavaScript
export const commandArguments = process.argv
|
|
export const cliOptions = {
|
|
verbose: commandArguments.includes('--verbose'),
|
|
|
|
withApi: commandArguments.includes('--with-api'),
|
|
noLists: commandArguments.includes('--no-lists'),
|
|
showMerges: commandArguments.includes('--show-merges'),
|
|
}
|