From 046c859af1248e20e3ce0e454b5f1db5046f01d8 Mon Sep 17 00:00:00 2001 From: Quinn Turner Date: Mon, 16 May 2022 20:36:52 -0400 Subject: [PATCH] fix: PNPM audit registry warning --- 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");