claudepluginhub 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/github-install.js +1 -1
- package/dist/native.d.ts +1 -1
- package/dist/native.js +2 -2
- package/package.json +1 -1
package/dist/github-install.js
CHANGED
|
@@ -172,7 +172,7 @@ export async function runGithubRemove(ownerRepo, scopeOverride) {
|
|
|
172
172
|
anyFailed = true;
|
|
173
173
|
}
|
|
174
174
|
// Best-effort: remove marketplace
|
|
175
|
-
const removeResult = claudeMarketplaceRemove(meta.marketplaceName);
|
|
175
|
+
const removeResult = claudeMarketplaceRemove(meta.marketplaceName, scope);
|
|
176
176
|
if (removeResult.ok) {
|
|
177
177
|
printSuccess(`Removed marketplace ${meta.marketplaceName}`);
|
|
178
178
|
}
|
package/dist/native.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export declare function claudePluginUninstall(plugin: string, scope: Scope): {
|
|
|
12
12
|
ok: boolean;
|
|
13
13
|
output: string;
|
|
14
14
|
};
|
|
15
|
-
export declare function claudeMarketplaceRemove(name: string): {
|
|
15
|
+
export declare function claudeMarketplaceRemove(name: string, scope: Scope): {
|
|
16
16
|
ok: boolean;
|
|
17
17
|
output: string;
|
|
18
18
|
};
|
package/dist/native.js
CHANGED
|
@@ -37,6 +37,6 @@ export function claudePluginInstall(plugin, marketplace, scope) {
|
|
|
37
37
|
export function claudePluginUninstall(plugin, scope) {
|
|
38
38
|
return runClaude(['plugin', 'uninstall', plugin, '--scope', scope]);
|
|
39
39
|
}
|
|
40
|
-
export function claudeMarketplaceRemove(name) {
|
|
41
|
-
return runClaude(['plugin', 'marketplace', 'remove', name]);
|
|
40
|
+
export function claudeMarketplaceRemove(name, scope) {
|
|
41
|
+
return runClaude(['plugin', 'marketplace', 'remove', name, '--scope', scope]);
|
|
42
42
|
}
|