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
- // Ignore cache write errors
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "preflight-mcp",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "MCP server that creates evidence-based preflight bundles for GitHub repositories and library docs.",
5
5
  "type": "module",
6
6
  "license": "MIT",