Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

consel

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

consel - npm Package Compare versions

Comparing version 1.0.30 to 1.0.31

14

bin/cli.js
#!/usr/bin/env node
const readline = require("readline");
const chalk = require("chalk");
const progress = require('progress');
const rl = readline.createInterface({

@@ -16,3 +17,16 @@ input: process.stdin,

}
if(['-test'].includes(process.argv[2])){
var ProgressBar = require('progress');
var bar = new ProgressBar(':bar', { total: 10 });
var timer = setInterval(function () {
bar.tick();
if (bar.complete) {
console.log('\ncomplete\n');
clearInterval(timer);
}
}, 100);
}
}
console.log(

@@ -19,0 +33,0 @@ chalk.blueBright(

5

package.json
{
"name": "consel",
"version": "1.0.30",
"version": "1.0.31",
"description": "",

@@ -14,3 +14,4 @@ "main": "index.js",

"dependencies": {
"chalk": "^4.0.0"
"chalk": "^4.0.0",
"progress": "^2.0.3"
},

@@ -17,0 +18,0 @@ "bin": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc