preflight-mcp 0.1.8 → 0.1.9
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.
|
@@ -290,8 +290,9 @@ export async function generateDependencyGraph(cfg, rawArgs) {
|
|
|
290
290
|
await fs.mkdir(paths.depsDir, { recursive: true });
|
|
291
291
|
await fs.writeFile(paths.depsGraphPath, JSON.stringify(result, null, 2));
|
|
292
292
|
}
|
|
293
|
-
catch {
|
|
294
|
-
//
|
|
293
|
+
catch (err) {
|
|
294
|
+
// Log but don't fail
|
|
295
|
+
console.error('[preflight] Failed to cache dependency graph:', err);
|
|
295
296
|
}
|
|
296
297
|
return result;
|
|
297
298
|
}
|