Replies: 3 comments 4 replies
-
|
Beta Was this translation helpful? Give feedback.
4 replies
-
I use |
Beta Was this translation helpful? Give feedback.
0 replies
-
Though not in the docs I found I needed to use quotes ie I think the leading @ confuses the parsing when dealing with packages in a named scope
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
how can I use
yarn up
to upgrade all packages?AFAICT,
yarn up *
or evenyarn up \*
does not update scoped packages. Even worse, it fails if there are no packages without scope:On the other hand,
yarn up @*/*
fails, if there's no scoped package:yarn up @*/* *
fails as well in either case.This makes it hard to automatically update all packages in various folders with the same script. Even if I was going to ignore the error code that is returned from the command, the error message itself cannot be suppressed, because it is written to stdout, not stderr . and stdout should be seen.
BTW, the documentation does not mention the difference between "scoped" or "unscoped".
So what's the right way to deal with it?
Beta Was this translation helpful? Give feedback.
All reactions