Compare commits

..

No commits in common. "61caf51f4e1514c9d8c6927aabd020d9db9698b6" and "1cb8331666dcca22c335a241a2b7cfbf792bbc1b" have entirely different histories.

3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartarchive",
"version": "4.0.37",
"version": "4.0.36",
"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.37',
version: '4.0.36',
description: 'A library for working with archive files, providing utilities for compressing and decompressing data.'
}

View File

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