diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 86ce865..45c6bc1 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartarchive', - version: '4.0.22', - description: 'work with archives' + version: '4.0.23', + description: 'A library for working with archive files, providing utilities for compressing and decompressing data.' } diff --git a/ts/classes.smartarchive.ts b/ts/classes.smartarchive.ts index d68b380..027e07b 100644 --- a/ts/classes.smartarchive.ts +++ b/ts/classes.smartarchive.ts @@ -122,6 +122,7 @@ export class SmartArchive { if (analyzedResultChunk.fileType?.mime === 'application/x-tar') { const tarStream = analyzedResultChunk.decompressionStream as plugins.tarStream.Extract; tarStream.on('entry', async (header, stream, next) => { + console.log(`tar stream file: ${header.name}`); const streamfile = plugins.smartfile.StreamFile.fromStream(stream, header.name); streamFileIntake.push(streamfile); stream.on('end', function () {