From 543fbe844c6e7429b30f64a125412b30f086b315 Mon Sep 17 00:00:00 2001 From: Quinn Turner Date: Mon, 16 May 2022 20:37:13 -0400 Subject: [PATCH] fix: PNPM audit registry warning (#257) --- lib/pnpm-auditer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pnpm-auditer.ts b/lib/pnpm-auditer.ts index 358620bf..065a6968 100644 --- a/lib/pnpm-auditer.ts +++ b/lib/pnpm-auditer.ts @@ -27,7 +27,7 @@ async function runPnpmAudit( const arguments_ = ["audit", "--json"]; if (registry) { - console.warn(yellow, "Yarn audit does not support the registry flag yet."); + console.warn(yellow, "PNPM audit does not support the registry flag yet."); } if (skipDevelopmentDependencies) { arguments_.push("--prod");