Skip to content

Commit c300a7a

Browse files
committed
Fix listPackages command
1 parent ddd9afd commit c300a7a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

packages/cli-plugin-deploy-pulumi/commands/newWatch/listPackages.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const listPackages = async ({ inputs }) => {
1919
packagesList.push(...webinyPrefixedPackagesToAdd);
2020
} else {
2121
packagesList = await execa("yarn", [
22+
"--silent",
2223
"webiny",
2324
"workspaces",
2425
"tree",
@@ -32,6 +33,7 @@ const listPackages = async ({ inputs }) => {
3233
}
3334

3435
const commandArgs = [
36+
"--silent",
3537
"webiny",
3638
"workspaces",
3739
"list",

packages/cli-plugin-deploy-pulumi/commands/watch/listPackages.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const listPackages = async ({ inputs }) => {
77
packagesList = Array.isArray(inputs.package) ? inputs.package : [inputs.package];
88
} else {
99
packagesList = await execa("yarn", [
10+
"--silent",
1011
"webiny",
1112
"workspaces",
1213
"tree",
@@ -20,6 +21,7 @@ const listPackages = async ({ inputs }) => {
2021
}
2122

2223
const commandArgs = [
24+
"--silent",
2325
"webiny",
2426
"workspaces",
2527
"list",

0 commit comments

Comments
 (0)