Skip to content

Commit 4b18b55

Browse files
committed
fix(zip): Unhandled error in child worker.
gildas-lormeau/zip.js#519
1 parent 80c1383 commit 4b18b55

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
### v0.5.4 / 2024.10.05
1+
### v0.5.5 / 2024.10.05
22

33
- fix: fix open in browser
4+
- fix(zip): Unhandled error in child worker
45

56
### v0.5.0 / 2024.10.05
67

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.5.4",
2+
"version": "0.5.5",
33
"license": "MIT",
44
"name": "@jersou/studio-pack-generator",
55
"tasks": {
@@ -24,7 +24,7 @@
2424
"@std/io": "jsr:@std/io@^0.224.9",
2525
"@std/media-types": "jsr:@std/media-types@^1.0.3",
2626
"@std/path": "jsr:@std/path@^1.0.6",
27-
"@zip-js/zip-js": "jsr:@zip-js/zip-js@^2.7.52",
27+
"@zip-js/zip-js": "jsr:@zip-js/zip-js@^2.7.52/data-uri",
2828
"https://deno.land/": "./vendor/deno.land/",
2929
"https://deno.land/std/": "./vendor/deno.land/[email protected]/"
3030
},

extract_pack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type StageType = "STORY" | "FOLDER" | "ITEM";
1515
export class PackExtractor {
1616
packPath: string;
1717
outputPath: string;
18-
zipReader?: ZipReader<Blob>;
18+
zipReader?: ZipReader;
1919
// deno-lint-ignore no-explicit-any
2020
entries: any[] = [];
2121
// deno-lint-ignore no-explicit-any

0 commit comments

Comments
 (0)