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
* fix(config): Don't pass .yarnrc generated flags to workspace child command
Previously, if flags were defined in .yarnrc then they would be insterted into the rawArgs array of
commander.js. The yarn workspace command would then attempt to pass these flags to the child process
that it spawns. They were being passed out-of-order and causing the child command to fail to
properly parse it's command line args. This change prevents those flags from being passed at all.
The yarn child process will read .yarnrc and inject the flags into it's own argument array anyway,
so passing them was just duplicating the flags.
#5496
* add test for 5534
0 commit comments