@soos-io/api-client
Advanced tools
Comparing version 0.2.10-pre.3 to 0.2.10-pre.4
@@ -210,2 +210,8 @@ "use strict"; | ||
logging_1.soosLogger.info(`${matchingFiles.length} files found matching pattern '${pattern}'.`); | ||
matchingFiles.flat().map((filePath) => { | ||
const filename = Path.basename(filePath); | ||
const fileStats = FileSystem.statSync(filePath); | ||
const fileSize = (0, utilities_1.formatBytes)(fileStats.size); | ||
logging_1.soosLogger.info(`Found ${scanType} file '${filename}' (${fileSize}) at location '${filePath}'.`); | ||
}); | ||
const hasMoreThanMaximumManifests = matchingFiles.length > constants_1.SOOS_CONSTANTS.FileUploads.MaxManifests; | ||
@@ -212,0 +218,0 @@ const filesToUpload = matchingFiles.slice(0, constants_1.SOOS_CONSTANTS.FileUploads.MaxManifests); |
{ | ||
"name": "@soos-io/api-client", | ||
"version": "0.2.10-pre.3", | ||
"version": "0.2.10-pre.4", | ||
"description": "This is the SOOS API Client for registered clients leveraging the various integrations to the SOOS platform.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
74802
1650