Describe the user story
I as a developer was surprised I could toggle feature off by prefixing them with --no-. I did not see that in the docs.
I looked into yarn install -h, yet there is no reference for any --no- flag, like --no-immutable even though it exists and works.
I stumbled over the flag per acciedent by reading about it in this comment:
You can pass the --no-immutable flag to turn it off for the install command
yarn install --no-immutable
Describe the solution you'd like
I want yarn help text to also include all possible --no- variants.
If this is default feature, I want to be made aware (though unsure what the correct place would be). Also I am unsure if there are some flags that don't support a --no--prefix or where it won't make sense.
Describe the user story
I as a developer was surprised I could toggle feature off by prefixing them with
--no-. I did not see that in the docs.I looked into
yarn install -h, yet there is no reference for any--no-flag, like--no-immutableeven though it exists and works.I stumbled over the flag per acciedent by reading about it in this comment:
Describe the solution you'd like
I want yarn help text to also include all possible
--no-variants.If this is default feature, I want to be made aware (though unsure what the correct place would be). Also I am unsure if there are some flags that don't support a
--no--prefix or where it won't make sense.