npmguard-cli 1.1.0 → 1.1.1

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.
@@ -175,6 +175,8 @@ async function runCryptoAuditAndInstall(fullSpec, name, version, apiUrl) {
175
175
  (err instanceof Error ? err.message : String(err)));
176
176
  process.exit(1);
177
177
  }
178
+ console.log(chalk.cyan(` Watch live: ${apiUrl}/audit/${auditId}`));
179
+ console.log();
178
180
  // 4. Stream the audit we just paid for (do NOT call auditCommand — that
179
181
  // would trigger a second, unpaid audit via /checkout).
180
182
  await streamAuditEvents(apiUrl, auditId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npmguard-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "description": "NpmGuard CLI — check npm packages against NpmGuard security audits",
6
6
  "main": "dist/index.js",