pneuma-skills 2.5.1 → 2.5.3
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.
- package/bin/pneuma.ts +2 -0
- package/package.json +1 -1
package/bin/pneuma.ts
CHANGED
|
@@ -225,6 +225,8 @@ function checkBunVersion() {
|
|
|
225
225
|
|
|
226
226
|
async function checkForUpdate(currentVersion: string) {
|
|
227
227
|
if (process.env.PNEUMA_SKIP_UPDATE) return;
|
|
228
|
+
// Skip interactive update prompt in non-interactive mode (e.g. Electron desktop)
|
|
229
|
+
if (process.argv.includes("--no-prompt")) return;
|
|
228
230
|
try {
|
|
229
231
|
const controller = new AbortController();
|
|
230
232
|
const timeout = setTimeout(() => controller.abort(), 3000);
|
package/package.json
CHANGED