Comparing version 1.4.4 to 1.4.5
@@ -88,2 +88,3 @@ "use strict"; | ||
MSDSort_1.MSDSort.sort(concat); | ||
concat.forEach(function (item) { return console.log(item); }); | ||
var baseCmdParts = this.baseCommand | ||
@@ -99,3 +100,3 @@ .map(function (baseCmd) { | ||
}); | ||
return baseCmdParts.concat(concat); | ||
return baseCmdParts.concat(concat).filter(function (item) { return item !== null; }); | ||
}; | ||
@@ -102,0 +103,0 @@ CommandLineToolModel.prototype.setJob = function (job) { |
"use strict"; | ||
var CommandLinePart = (function () { | ||
function CommandLinePart(value, sortingKey, type) { | ||
value = value === undefined ? '' : value; // in case expression returned undefined | ||
value = value.toString(); // in case expression returned something other than a string | ||
this.value = value.trim(); | ||
@@ -5,0 +7,0 @@ this.type = type; |
{ | ||
"name": "cwlts", | ||
"version": "1.4.4", | ||
"version": "1.4.5", | ||
"description": "TypeScript data model for Common Workflow Language", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
1028350
25124