Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@buggyorg/component-library

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@buggyorg/component-library - npm Package Compare versions

Comparing version
0.3.5
to
0.3.6
scripts/.download_...astic/logs/elasticsearch.log.2016-05-27

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

+6
-0

@@ -129,2 +129,5 @@ 'use strict';

});
}).catch(function (error) {
error.message = '\'' + id + '\' ' + error.message;
throw error;
}).then(getSource);

@@ -246,2 +249,5 @@ },

return api.list(node).then(function (list) {
if (list.length === 0) {
return '';
}
return _lodash2.default.last(list.sort(function (a, b) {

@@ -248,0 +254,0 @@ return _semver2.default.compare(a.version, b.version);

+1
-1
{
"name": "@buggyorg/component-library",
"version": "0.3.5",
"version": "0.3.6",
"description": "Backend driver for buggy components.",

@@ -5,0 +5,0 @@ "main": "lib/api.js",

@@ -113,4 +113,6 @@ /* global __dirname */

}
))
.then(getSource)
)).catch((error) => {
error.message = '\'' + id + '\' ' + error.message
throw error
}).then(getSource)
},

@@ -238,2 +240,5 @@

.then(list => {
if (list.length === 0) {
return ''
}
return _.last(list.sort((a, b) => { return semver.compare(a.version, b.version) })).version

@@ -240,0 +245,0 @@ })

Sorry, the diff of this file is too big to display