Can't get yarn to stop prefixing every line with "➤" #5329
Unanswered
ArcanoxDragon
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a VS Code workspace with tasks defined for building all of my packages. I'm trying to use
yarn workspaces foreach -pi run watch
for running TSC in--watch
mode for all packages in parallel, but the$tsc
problem matcher in VS Code is not matching error messages correctly due to the prefix Yarn is adding to each line - it thinks each file name starts with "➤ ". I have configuredenableMessageNames: false
in my.yarnrc.yml
file, which eliminates the "YN0000" part, but not the actual "➤" character itself.I found #5152 which suggests that this character is no longer supposed to be written when using
yarn workspaces foreach
, but it is still printed. I have usedyarn set version latest
in the root Workspace and all sub-packages, andyarn --version
prints3.5.0
, which was released since that PR was merged (the PR itself mentions being included in3.4.0
).What do I need to do to get Yarn to stop prefixing the output?
Beta Was this translation helpful? Give feedback.
All reactions