@infinitedusky/indusk-mcp 1.2.1 → 1.2.2
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.
|
@@ -288,8 +288,11 @@ export async function extensionsUpdate(projectRoot, names) {
|
|
|
288
288
|
});
|
|
289
289
|
console.info(` ${name}: package updated`);
|
|
290
290
|
}
|
|
291
|
-
catch {
|
|
292
|
-
|
|
291
|
+
catch (e) {
|
|
292
|
+
const err = e;
|
|
293
|
+
const detail = err.stderr?.trim() || err.message || "unknown error";
|
|
294
|
+
console.info(` ${name}: package update failed: ${detail}`);
|
|
295
|
+
console.info(` ${name}: run manually: pnpm add ${pkg}@latest`);
|
|
293
296
|
}
|
|
294
297
|
}
|
|
295
298
|
updated++;
|