You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Got an issue with the opts() method. According to the docs it should return an Object with option names as keys. But the values always seem to be undefined. From what I can see, these values get loaded here but I don't really see how this[key] could ever return anything other than undefined. Am I missing something here?
The text was updated successfully, but these errors were encountered:
Further checking, this seems to be related to default value assignment. These values get set here which according to the comment explicitly set boolean flags only when negated by --no-*. I guess the question then is, how to set a default false value for a boolean flag that is not negated with --no-*.
Hi there,
Got an issue with the opts() method. According to the docs it should return an Object with option names as keys. But the values always seem to be undefined. From what I can see, these values get loaded here but I don't really see how
this[key]
could ever return anything other thanundefined
. Am I missing something here?The text was updated successfully, but these errors were encountered: