Compare commits

...

2 Commits

Author SHA1 Message Date
61caf51f4e 4.0.37 2024-06-08 14:48:25 +02:00
be4e2cdae7 fix(core): update 2024-06-08 14:48:24 +02:00
3 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartarchive",
"version": "4.0.36",
"version": "4.0.37",
"description": "A library for working with archive files, providing utilities for compressing and decompressing data.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartarchive',
version: '4.0.36',
version: '4.0.37',
description: 'A library for working with archive files, providing utilities for compressing and decompressing data.'
}

View File

@ -91,9 +91,7 @@ export class TarTools {
);
content.pipe(entry);
entry.on('end', () => {
resolve();
});
resolve();
});
}