Sign In

cloudelements-cmtool

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloudelements-cmtool - npm Package Compare versions

Comparing version
0.2.2
to
0.2.3
+19
-5
lib/jira.js

@@ -27,7 +27,21 @@ // Generated by LiveScript 1.3.1

this$.request('get', "issue/" + id, function(err, story){
cb(err, import$({
key: id
}, story != null
? story
: {}));
var val;
if (err) {
val = {
key: id,
fields: {
issuetype: {
name: 'Errors'
},
summary: "No data could be pulled for " + id
}
};
} else {
val = import$({
key: id
}, story != null
? story
: {});
}
cb(null, val);
});

@@ -34,0 +48,0 @@ }, function(err, stories){

{
"name": "cloudelements-cmtool",
"version": "0.2.2",
"version": "0.2.3",
"description": "An integrated client for CE CM apps.",

@@ -5,0 +5,0 @@ "main": "lib/cmtool",

Sorry, the diff of this file is not supported yet