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

gitlab-cli

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitlab-cli - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

10

lib/actions.js

@@ -171,3 +171,3 @@ var projects = [];

{
client.projects.list({}, function onProjectsLoaded(error, _projects) {
client.projects.list({per_page: 100}, function onProjectsLoaded(error, _projects) {
projects = _projects;

@@ -202,2 +202,4 @@

if (checkResource(cb)) {
data.per_page = data.per_page || 100;
client[resource.type].list(data, function(error, data) {

@@ -371,8 +373,8 @@ if (data) {

{
var aliases = '';
var out = '';
for(var alias in aliases) {
aliases += alias +':\t\t' + aliases[alias] + '\n';
out += alias +':\t\t' + aliases[alias] + '\n';
}
cb(null, aliases);
cb(null, out);
}
module.exports['list-aliases'] = listAliases;

2

package.json
{
"name": "gitlab-cli",
"version": "0.0.12",
"version": "0.0.13",
"description": "Gitlab API on the command line",

@@ -5,0 +5,0 @@ "main": "./bin/cli.js",

Sorry, the diff of this file is not supported yet

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