sindresorhus / meow

🐈 CLI app helper
MIT License
3.53k stars 150 forks source link

Add `aliases` option #226

Closed tommy-mitchell closed 1 year ago

tommy-mitchell commented 1 year ago

Adds flag.aliases as specified in #109:

flags: {
    unicorn: {
        type: 'string',
        shortFlag: 'u',
        aliases: ['unicorns']
    }
}
//=> Accepts `--unicorn`, `--unicorns`, or `-u`
sindresorhus commented 1 year ago

@tommy-mitchell Do you plan any more changes? If not, I will do a new version.

tommy-mitchell commented 1 year ago

I was also working on a .choices option.