npmguard-cli 0.5.1 → 0.5.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.
@@ -306,6 +306,8 @@ export async function installCommand(packageSpec, auditSource, force = false) {
306
306
  }
307
307
  // Trigger audit engine
308
308
  const auditApiUrl = process.env.NPMGUARD_AUDIT_API_URL ?? DEFAULT_AUDIT_API_URL;
309
+ console.log(chalk.gray(` Live dashboard: http://209.38.42.28:3000`));
310
+ console.log();
309
311
  const auditSpinner = ora(" Running security audit...").start();
310
312
  try {
311
313
  const resp = await fetch(auditApiUrl, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npmguard-cli",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "type": "module",
5
5
  "description": "Check npm packages against NpmGuard security audits on ENS before installing",
6
6
  "bin": "./dist/index.js",