@shnitzel/plugscout 0.3.36 → 0.3.38

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.
@@ -1072,6 +1072,7 @@
1072
1072
  "format": "json-array",
1073
1073
  "timeoutMs": 10000,
1074
1074
  "fallbackToLocal": true,
1075
+ "authEnv": "GITHUB_TOKEN",
1075
1076
  "provider": "openai",
1076
1077
  "official": true,
1077
1078
  "licenseHint": "vendor"
@@ -31,9 +31,13 @@ export async function resolveRegistryEntries(registry, options = {}, fetchImpl =
31
31
  return { entries: parsed, source: 'remote' };
32
32
  }
33
33
  catch (error) {
34
- if (registry.remote.fallbackToLocal && registry.entries.length > 0) {
35
- logger.warn(`Remote registry ${registry.id} fetch failed (${summarizeError(error)}); using ${registry.entries.length} local fallback entries`);
36
- return { entries: registry.entries, source: 'local' };
34
+ if (registry.remote.fallbackToLocal) {
35
+ if (registry.entries.length > 0) {
36
+ logger.warn(`Remote registry ${registry.id} fetch failed (${summarizeError(error)}); using ${registry.entries.length} local fallback entries`);
37
+ return { entries: registry.entries, source: 'local' };
38
+ }
39
+ logger.warn(`Remote registry ${registry.id} fetch failed (${summarizeError(error)}); no local fallback entries, skipping`);
40
+ return { entries: [], source: 'local' };
37
41
  }
38
42
  throw error;
39
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shnitzel/plugscout",
3
- "version": "0.3.36",
3
+ "version": "0.3.38",
4
4
  "description": "Claude plugins + Claude connectors + Copilot extensions + Skills + MCP security intelligence framework",
5
5
  "private": false,
6
6
  "type": "module",
@@ -96,7 +96,7 @@
96
96
  "devDependencies": {
97
97
  "@types/node": "^25.5.0",
98
98
  "@types/react": "^19.2.14",
99
- "@remotion/cli": "4.0.473",
99
+ "@remotion/cli": "4.0.477",
100
100
  "@types/semver": "^7.7.1",
101
101
  "@typescript-eslint/eslint-plugin": "^7.10.0",
102
102
  "@typescript-eslint/parser": "^7.10.0",
@@ -105,7 +105,7 @@
105
105
  "prettier": "^3.2.5",
106
106
  "react": "^19.2.4",
107
107
  "react-dom": "^19.2.4",
108
- "remotion": "4.0.473",
108
+ "remotion": "4.0.477",
109
109
  "ts-node": "^10.9.2",
110
110
  "tsx": "^4.7.1",
111
111
  "typescript": "^5.4.5",