[yarn] Fix dev script compatibility with yarn v4

This commit is contained in:
Laura Hausmann 2023-11-15 15:50:46 +01:00
parent c60414f347
commit 141c134698
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -12,7 +12,7 @@ const execa = require("execa");
stderr: process.stderr,
})
await execa("yarn", ["workspaces", "foreach", "run", "build"], {
await execa("yarn", ["workspaces", "foreach", "-Apitv", "run", "build"], {
stdout: process.stdout,
stderr: process.stderr,
});