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

myges

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

myges - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "myges",
"version": "1.0.3",
"version": "1.0.4",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [],

@@ -10,3 +10,3 @@ #!/usr/bin/env node --no-warnings

const program = new commander.Command()
program.version('1.0.0')
program.version('1.0.4')

@@ -218,2 +218,6 @@ program

program.parse(process.argv)
if (process.argv.length < 3) {
program.help()
} else {
program.parse(process.argv)
}

@@ -49,2 +49,7 @@ const fs = require('fs').promises

function must_be_logged() {
console.error('You must be logged before using that command. (myges login)')
return process.exit(1)
}
/**

@@ -58,5 +63,4 @@ * @returns {Promise<Config>}

if (exit_if_not_logged || !parsed.access_token || !parsed.token_type) {
console.error('You must be logged before using that command. (ges login)')
return process.exit(1)
if (exit_if_not_logged && (!parsed.access_token || !parsed.token_type)) {
return must_be_logged()
}

@@ -69,2 +73,6 @@

} catch (_) {
if (exit_if_not_logged) {
return must_be_logged()
}
return model

@@ -71,0 +79,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