From d7d50f4373884ca6a6c4a2b4cf394e125427fb6f Mon Sep 17 00:00:00 2001 From: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com> Date: Thu, 9 Jan 2025 07:27:41 -0800 Subject: [PATCH] Chore: Plugin repo CLI: Only match packages with the joplin-plugin keyword (#11599) --- packages/plugin-repo-cli/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-repo-cli/index.ts b/packages/plugin-repo-cli/index.ts index f8091d9c7d..825c5376ef 100644 --- a/packages/plugin-repo-cli/index.ts +++ b/packages/plugin-repo-cli/index.ts @@ -245,7 +245,7 @@ async function commandBuild(args: CommandBuildArgs) { chdir(previousDir); - const searchResults = (await execCommand('npm search joplin-plugin --searchlimit 5000 --json', { showStdout: false, showStderr: false })).trim(); + const searchResults = (await execCommand('npm search keywords:joplin-plugin --searchlimit 5000 --json', { showStdout: false, showStderr: false })).trim(); const npmPackages = pluginInfoFromSearchResults(JSON.parse(searchResults)); for (const npmPackage of npmPackages) {