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.2.0 to 1.3.0

commands/help.js

5

commands/hello.js

@@ -28,6 +28,5 @@ const chalk = require('chalk')

.then(({ user }) => {
console.log(
`Yay, it's ${chalk.bold.green(user)}! My favourie team member.`
)
console.log(`
Yay, it's ${chalk.bold.green(user)}! My favourie team member.`)
})
}

@@ -5,2 +5,4 @@ #!/usr/bin/env node

const helloCmd = require('./commands/hello')
const helpCmd = require('./commands/help')
const versionCmd = require('./commands/version')

@@ -10,2 +12,13 @@ const args = process.argv.splice(2)

switch(args[0]) {
case '--help':
case '-h':
case undefined:
helpCmd()
break
case '--version':
case '-v':
versionCmd()
break
case 'hello':

@@ -12,0 +25,0 @@ helloCmd(args)

2

package.json

@@ -48,3 +48,3 @@ {

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