@myapihq/cli 1.0.66 → 1.0.67

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.
@@ -29,6 +29,9 @@ export async function checkForUpdate(currentVersion) {
29
29
  }
30
30
  catch (installErr) {
31
31
  const msg = installErr?.stderr?.toString?.() || installErr?.message || String(installErr);
32
+ // Silently ignore ETARGET — version just published, tarball not yet available.
33
+ if (msg.includes('ETARGET') || msg.includes('notarget'))
34
+ return;
32
35
  info(`› Auto-update failed: ${msg.trim()}`);
33
36
  info(`› Run manually: npm install -g @myapihq/cli@${latest}`);
34
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myapihq/cli",
3
- "version": "1.0.66",
3
+ "version": "1.0.67",
4
4
  "description": "MyAPI command-line interface",
5
5
  "type": "module",
6
6
  "files": [