From 3e2f4324bcf63bb2cf36f982cf5044110bbaa487 Mon Sep 17 00:00:00 2001 From: Raine Revere Date: Thu, 14 Mar 2024 20:38:25 +0000 Subject: [PATCH] packageManager: Remove staticRegistry deprecation warning. --- README.md | 1 - src/cli-options.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/README.md b/README.md index 96b8f566..7f055522 100644 --- a/README.md +++ b/README.md @@ -591,7 +591,6 @@ Specifies the package manager to use when looking up versions. yarnSystem-installed yarn. Automatically used if yarn.lock is present. pnpmSystem-installed pnpm. Automatically used if pnpm-lock.yaml is present. bunSystem-installed bun. Automatically used if bun.lockb is present. - staticRegistryDeprecated. Use --registryType json. ## peer diff --git a/src/cli-options.ts b/src/cli-options.ts index 75d7d7bc..e658b963 100755 --- a/src/cli-options.ts +++ b/src/cli-options.ts @@ -423,7 +423,6 @@ const extendedHelpPackageManager: ExtendedHelp = ({ markdown }) => { ['yarn', `System-installed yarn. Automatically used if yarn.lock is present.`], ['pnpm', `System-installed pnpm. Automatically used if pnpm-lock.yaml is present.`], ['bun', `System-installed bun. Automatically used if bun.lockb is present.`], - ['staticRegistry', `Deprecated. Use --registryType json.`], ], })