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.
- package/dist/commands/install.js +2 -0
- package/package.json +1 -1
package/dist/commands/install.js
CHANGED
|
@@ -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);
|