Compare commits

...

6 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
4d5ea812af 4.0.30 2024-06-08 12:40:57 +02:00
500ef01ded fix(core): update 2024-06-08 12:40:56 +02:00
3196a02835 4.0.29 2024-06-08 11:06:10 +02:00
de1c46ed0a fix(core): update 2024-06-08 11:06:09 +02:00
7 changed files with 11 additions and 9 deletions

2
dist_ts/index.d.ts vendored
View File

@ -1 +1,3 @@
export * from './classes.smartarchive.js';
export * from './classes.tartools.js';
export * from './classes.ziptools.js';

View File

@ -1,2 +1,4 @@
export * from './classes.smartarchive.js';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDJCQUEyQixDQUFDIn0=
export * from './classes.tartools.js';
export * from './classes.ziptools.js';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyx1QkFBdUIsQ0FBQyJ9

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartarchive",
"version": "4.0.28",
"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.28',
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(

View File

@ -1 +1,3 @@
export * from './classes.smartarchive.js';
export * from './classes.tartools.js';
export * from './classes.ziptools.js';