File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
- ### v0.5.4 / 2024.10.05
1
+ ### v0.5.5 / 2024.10.05
2
2
3
3
- fix: fix open in browser
4
+ - fix(zip): Unhandled error in child worker
4
5
5
6
### v0.5.0 / 2024.10.05
6
7
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 0.5.4 " ,
2
+ "version" : " 0.5.5 " ,
3
3
"license" : " MIT" ,
4
4
"name" : " @jersou/studio-pack-generator" ,
5
5
"tasks" : {
24
24
"@std/io" : " jsr:@std/io@^0.224.9" ,
25
25
"@std/media-types" : " jsr:@std/media-types@^1.0.3" ,
26
26
"@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 " ,
28
28
"https://deno.land/" : " ./vendor/deno.land/" ,
29
29
"https://deno.land/std/" :
" ./vendor/deno.land/[email protected] /"
30
30
},
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type StageType = "STORY" | "FOLDER" | "ITEM";
15
15
export class PackExtractor {
16
16
packPath : string ;
17
17
outputPath : string ;
18
- zipReader ?: ZipReader < Blob > ;
18
+ zipReader ?: ZipReader ;
19
19
// deno-lint-ignore no-explicit-any
20
20
entries : any [ ] = [ ] ;
21
21
// deno-lint-ignore no-explicit-any
You can’t perform that action at this time.
0 commit comments