Compare commits

...

2 Commits

Author SHA1 Message Date
37e8a1d0f7 4.0.31 2024-06-08 12:44:41 +02:00
5143cd098d fix(core): update 2024-06-08 12:44:40 +02:00
4 changed files with 4 additions and 8 deletions

View File

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

View File

@ -35,7 +35,7 @@ export class SmartArchive {
// INSTANCE
public gzipTools = new GzipTools(this);
public bzip2Tools = new Bzip2Tools(this);
public tarTools = new TarTools(this);
public tarTools = new TarTools();
public zipTools = new ZipTools(this);
public archiveAnalyzer = new ArchiveAnalyzer(this);

View File

@ -3,11 +3,7 @@ import * as plugins from './plugins.js';
export class TarTools {
// INSTANCE
smartArchiveRef: SmartArchive;
constructor(smartArchiveRefArg: SmartArchive) {
this.smartArchiveRef = smartArchiveRefArg;
}
constructor() {}
// packing
public async addFileToPack(