1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-07 19:30:04 +02:00

Chore: Plugin repo CLI: Only match packages with the joplin-plugin keyword (#11599)

This commit is contained in:
Henry Heino 2025-01-09 07:27:41 -08:00 committed by GitHub
parent 83db585c0b
commit d7d50f4373
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) {