Compare commits

..

4 Commits

Author SHA1 Message Date
0f630382e1 4.0.10 2023-11-11 19:58:20 +01:00
fc09d5aeac fix(core): update 2023-11-11 19:58:19 +01:00
e697730559 4.0.9 2023-11-11 19:55:20 +01:00
0e61bd7c9a fix(core): update 2023-11-11 19:55:19 +01:00
5 changed files with 12 additions and 10 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartarchive",
"version": "4.0.8",
"version": "4.0.10",
"description": "work with archives",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
@ -26,7 +26,7 @@
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrequest": "^2.0.21",
"@push.rocks/smartrx": "^3.0.7",
"@push.rocks/smartstream": "^3.0.14",
"@push.rocks/smartstream": "^3.0.15",
"@push.rocks/smartunique": "^3.0.6",
"@push.rocks/smarturl": "^3.0.7",
"@types/tar-stream": "^3.1.3",

10
pnpm-lock.yaml generated
View File

@ -21,8 +21,8 @@ dependencies:
specifier: ^3.0.7
version: 3.0.7
'@push.rocks/smartstream':
specifier: ^3.0.14
version: 3.0.14
specifier: ^3.0.15
version: 3.0.15
'@push.rocks/smartunique':
specifier: ^3.0.6
version: 3.0.6
@ -735,7 +735,7 @@ packages:
'@push.rocks/smartpath': 5.0.11
'@push.rocks/smartpromise': 4.0.3
'@push.rocks/smartrequest': 2.0.21
'@push.rocks/smartstream': 3.0.14
'@push.rocks/smartstream': 3.0.15
'@types/fs-extra': 11.0.3
'@types/glob': 8.1.0
'@types/js-yaml': 4.0.8
@ -952,8 +952,8 @@ packages:
through2: 4.0.2
dev: true
/@push.rocks/smartstream@3.0.14:
resolution: {integrity: sha512-Z8jysAB/rit9P+vGHwuyNzpD7jGwb5BW+ueYPxWXfcRwQMqhhyGaXyix1CAjJBJ0dOlbKiBoq+tG8Vv8SHzYxA==}
/@push.rocks/smartstream@3.0.15:
resolution: {integrity: sha512-VV8h3dIpd8vTjAQBdjpyY1yrJOsoQ1niR+K8Vj0GD+9baHGfCY9jCwKfvd2sC/Ogi6LCHpE6KqZCGKuKZNQ8Ig==}
dependencies:
'@push.rocks/smartpromise': 4.0.3
'@push.rocks/smartrx': 3.0.7

View File

@ -38,7 +38,7 @@ tap.test('should extract existing files on disk', async () => {
await testSmartarchive.exportToFs(testPaths.nogitDir);
});
tap.test('should extract a b2zip', async () => {
tap.skip.test('should extract a b2zip', async () => {
const dataUrl = 'https://daten.offeneregister.de/de_companies_ocdata.jsonl.bz2';
const testArchive = await smartarchive.SmartArchive.fromArchiveUrl(dataUrl);
await testArchive.exportToFs(

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartarchive',
version: '4.0.8',
version: '4.0.10',
description: 'work with archives'
}

View File

@ -142,7 +142,9 @@ export class SmartArchive {
streamFileIntake.push(streamFile);
streamFileIntake.signalEnd();
}
},
}, {
objectMode: true
}
);
archiveStream.pipe(createAnalyzedStream()).pipe(createUnpackStream());