Skip to content

remove requirement of -- in cli config options array #38

@jaeh

Description

@jaeh
const cliArgs = {
  options: [
    ['--arg1', '--a1'],
    ['--arg2', '--a2'],
  ],
}

turns into:

const cliArgs = {
  options: [
    ['arg1', 'a1'],
    ['arg2', 'a2'],
  ],
}

same for help, default, required etc

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions