-
-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add isMultiple
option for flags
#143
Conversation
- Break out into separate PR
Extracted unrelated change into separate PR: #145 |
index.d.ts
Outdated
@@ -24,14 +25,16 @@ declare namespace meow { | |||
- `type`: Type of value. (Possible values: `string` `boolean` `number`) | |||
- `alias`: Usually used to define a short flag alias. | |||
- `default`: Default value when the flag is not specified. | |||
- `multiple`: Indicates a flag can be set multiple times. Returns an array. (Default: false) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What returns an array? It's not clear enough.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Valid point. Maybe drop the word return
altogether?
How about Values are turned into an array (in order?)
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Went with the shorter form
index.js
Outdated
@@ -71,6 +84,13 @@ const meow = (helpText, options) => { | |||
}; | |||
} | |||
|
|||
if (minimistOptions.array !== undefined) { | |||
minimistOptions.array = arrify(minimistOptions.array).map(flagKey => ({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a short code comments what's happening here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better yet: Poke @vadimdemedes to give his input on supporting this in minimist-options
: minimist-options
| Support boolean and number arrays. Then there wouldn't be any need for a comment (or code!) at all...
Your input would be highly valuable as well!
The main function is getting huge. Would be great if you could try to modularize some of the new code into separate functions. |
Should it be named |
Sure, I'll give it a go. |
Personally, I tend to use Having that said, I definitely think naming of booleans should follow the same convention. So if Also, I think you referred to the wrong issue/PR (think you meant #141). FYI: In the issue you linked to, you are referring to the issue itself instead of the PR (131 vs. 132). |
@sindresorhus Alright, I've processed your feedback. Let me know what you think. |
Up-to-date with |
@sindresorhus Up-to-date with |
isMultiple
option for flags
Looks great 👌 |
Cool. Would you be able to ask @vadimdemedes to check out the PR in Understand he might not want to merge it, just want it to be evaluated. |
Give it a little bit more time. He's probably busy. Sometimes it takes some weeks for me to look at PRs too. |
Hehe, yeah, so I’ve learned 😉 I get that, but he hasn’t responded to a related issue from August (I think) last year. Oh, well. Thanks anyway. |
I tried this on a project and it crashes in:
When the flag is |
Ouch. OK, I’ll have a looksie later tonight. |
@sindresorhus Pushed fix |
Excuse me for delay, guys. Change is in master and published! |
629af48 😉 |
Differs in two ways from previous attempts:
multiple
set, it throws an error. Makes more sense to me and is how I interpret "we should allow only one value by default".boolean
andnumber
arrays in addition tostring
.Fixes #111
Closes #123
IssueHunt Summary
Referenced issues
This pull request has been submitted to: