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

@serieseight/cli

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@serieseight/cli - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

commands/hello.js

14

index.js
#!/usr/bin/env node
const chalk = require('chalk')
const helloCmd = require('./commands/hello')
const args = process.argv.splice(2)
console.log(
`The ${chalk.bold(args.join(' '))} command is not defined... yet!`
)
switch(args[0]) {
case 'hello':
helloCmd(args)
break
default:
console.log(
`The ${chalk.bold.red(args.join(' '))} command is not defined... yet!`
)
}

@@ -19,3 +19,4 @@ {

"dependencies": {
"chalk": "^2.4.1"
"chalk": "^2.4.1",
"inquirer": "^6.2.0"
},

@@ -48,3 +49,3 @@ "description": "A pointless CLI",

},
"version": "1.1.0"
"version": "1.2.0"
}
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