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

28

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

28 - npm Package Compare versions

Comparing version 0.4.7 to 0.4.8

10

lib/commands/projects.js

@@ -16,6 +16,8 @@ 'use strict';

.then(function(){
console.log('Project List:');
var projects = Config.getProjectList();
projects.forEach(function(project){
console.log('* ' + project);
return Config.getProjects().then(function(response){
console.log('Project List:');
response.body.forEach(function(project){
var line = '* ' + project.name + ' (' + project.sausaVersion + ')';
console.log(project.updateableTo ? line.grey : line);
});
});

@@ -22,0 +24,0 @@ });

@@ -91,2 +91,10 @@ 'use strict';

},
getProjects: function(){
var that = this;
var $28 = this.getAPIClient();
return $28.api.Project.listProjects({
token: that.getAccessToken()
});
},

@@ -93,0 +101,0 @@ handleAPIAuthError: function(error){

2

package.json

@@ -9,3 +9,3 @@ {

"description": "Command line utility to download and upload 28.io queries.",
"version": "0.4.7",
"version": "0.4.8",
"keywords": [

@@ -12,0 +12,0 @@ "jsoniq",

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