diff --git a/src/schemas/json/pnpm-workspace.json b/src/schemas/json/pnpm-workspace.json index f77764c9067..0dce09ef681 100644 --- a/src/schemas/json/pnpm-workspace.json +++ b/src/schemas/json/pnpm-workspace.json @@ -517,6 +517,11 @@ } ] }, + "reporter": { + "description": "Allows you to customize the output style of the logs.\nhttps://pnpm.io/cli/install#--reportername", + "type": "string", + "enum": ["silent", "default", "append-only", "ndjson"] + }, "useBetaCli": { "description": "Experimental option that enables beta features of the CLI.", "type": "boolean" diff --git a/src/test/pnpm-workspace/pnpm-workspace.yaml b/src/test/pnpm-workspace/pnpm-workspace.yaml index a23322190af..8e119496a15 100644 --- a/src/test/pnpm-workspace/pnpm-workspace.yaml +++ b/src/test/pnpm-workspace/pnpm-workspace.yaml @@ -27,3 +27,6 @@ preferOffline: true # https://pnpm.io/cli/run#--workspace-concurrency workspaceConcurrency: 5 + +# https://pnpm.io/cli/install#--reportername +reporter: append-only