-
Hi champs! What is the pnpm equivalent of The above script will list all the packages in your workspace that have changed since the last commit. By packages, I'm referring to in the context of monorepo. The closest I've been to is:
I expect the output to be something like:
Thanks 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
try
|
Beta Was this translation helpful? Give feedback.
-
use pnpm list "@desisyst/*" --filter "...[origin/main]" --depth=-1 | awk 'NF{print $1}' | awk -F '@' '{print $1$2}' use pnpm list "@desisyst/*" --filter "...[origin/main]" --depth=-1 --json | jq -r '.[] | .name' |
Beta Was this translation helpful? Give feedback.
-
@zkochan Perhaps we need support: |
Beta Was this translation helpful? Give feedback.
try