fix(core): update
This commit is contained in:
parent
4d5ea812af
commit
5143cd098d
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartarchive',
|
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.'
|
description: 'A library for working with archive files, providing utilities for compressing and decompressing data.'
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ export class SmartArchive {
|
|||||||
// INSTANCE
|
// INSTANCE
|
||||||
public gzipTools = new GzipTools(this);
|
public gzipTools = new GzipTools(this);
|
||||||
public bzip2Tools = new Bzip2Tools(this);
|
public bzip2Tools = new Bzip2Tools(this);
|
||||||
public tarTools = new TarTools(this);
|
public tarTools = new TarTools();
|
||||||
public zipTools = new ZipTools(this);
|
public zipTools = new ZipTools(this);
|
||||||
public archiveAnalyzer = new ArchiveAnalyzer(this);
|
public archiveAnalyzer = new ArchiveAnalyzer(this);
|
||||||
|
|
||||||
|
@ -3,11 +3,7 @@ import * as plugins from './plugins.js';
|
|||||||
|
|
||||||
export class TarTools {
|
export class TarTools {
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
smartArchiveRef: SmartArchive;
|
constructor() {}
|
||||||
|
|
||||||
constructor(smartArchiveRefArg: SmartArchive) {
|
|
||||||
this.smartArchiveRef = smartArchiveRefArg;
|
|
||||||
}
|
|
||||||
|
|
||||||
// packing
|
// packing
|
||||||
public async addFileToPack(
|
public async addFileToPack(
|
||||||
|
Loading…
Reference in New Issue
Block a user