fix discord depends (#549)

This commit is contained in:
paisley
2026-03-17 11:53:44 +08:00
committed by GitHub
Unverified
parent 686bc2f235
commit c86bacd240
3 changed files with 13 additions and 0 deletions

View File

@@ -133,6 +133,12 @@ queue.push({ nodeModulesDir: openclawVirtualNM, skipPkg: 'openclaw' });
const SKIP_PACKAGES = new Set([
'typescript',
'@playwright/test',
// @discordjs/opus is a native .node addon compiled for the system Node.js
// ABI. The Gateway runs inside Electron's utilityProcess which has a
// different ABI, so the binary fails with "Cannot find native binding".
// The package is optional — openclaw gracefully degrades when absent
// (only Discord voice features are affected; text chat works fine).
'@discordjs/opus',
]);
const SKIP_SCOPES = ['@cloudflare/', '@types/'];
let skippedDevCount = 0;

View File

@@ -102,6 +102,12 @@ async function fetchSparseRepo(repo, ref, paths, checkoutDir) {
}
echo`Bundling preinstalled skills...`;
if (process.env.SKIP_PREINSTALLED_SKILLS === '1') {
echo`⏭ SKIP_PREINSTALLED_SKILLS=1 set, skipping skills fetch.`;
process.exit(0);
}
const manifestSkills = loadManifest();
rmSync(OUTPUT_ROOT, { recursive: true, force: true });