Remove bun fallback from sync-marketplace.cjs #270

Closed
opened 2026-01-25 13:13:33 +00:00 by jack · 0 comments
Owner

Problem

scripts/sync-marketplace.cjs:128-138 versucht zuerst bun install, dann npm install:

// Try bun first, fall back to npm
try {
  execSync('bun install', { ... });
} catch {
  execSync('npm install', { ... });
}

Lösung

Direkt npm install oder pnpm install verwenden (je nach Projekt-Setup):

execSync('npm install', {
  cwd: target,
  stdio: 'pipe',
});
## Problem `scripts/sync-marketplace.cjs:128-138` versucht zuerst `bun install`, dann `npm install`: ```js // Try bun first, fall back to npm try { execSync('bun install', { ... }); } catch { execSync('npm install', { ... }); } ``` ## Lösung Direkt `npm install` oder `pnpm install` verwenden (je nach Projekt-Setup): ```js execSync('npm install', { cwd: target, stdio: 'pipe', }); ```
jack 2026-01-25 13:13:34 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
customable/claude-mem#270
No description provided.