Skip to content

Commit b94b5c6

Browse files
author
zhangfuxing
committed
fix: specifier 'jsr:@zip-js/zip-js' is missing a version constraint
1 parent 57c542b commit b94b5c6

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

deps.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
export { EventEmitter } from "node:events";
2-
export { exists, ensureDir } from "jsr:@std/[email protected]";
2+
export { ensureDir, exists } from "jsr:@std/[email protected]";
33
export * as path from "jsr:@std/[email protected]";
44
export { Buffer, copy, readAll, writeAll } from "jsr:@std/[email protected]";
55
export { crc32, Crc32Stream } from "jsr:@deno-library/[email protected]";
66
export type { Reader, Writer } from "jsr:@std/[email protected]/types";
7-
export { UntarStream, TarStream, type TarStreamInput } from "jsr:@std/[email protected]";
7+
export {
8+
TarStream,
9+
type TarStreamInput,
10+
UntarStream,
11+
} from "jsr:@std/[email protected]";
12+
export {
13+
type EntryMetaData,
14+
terminateWorkers,
15+
ZipReader,
16+
ZipReaderStream,
17+
ZipWriter,
18+
ZipWriterStream,
19+
} from "jsr:@zip-js/[email protected]";

zip/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
terminateWorkers,
66
ZipReaderStream,
77
ZipWriter,
8-
} from "jsr:@zip-js/zip-js";
8+
} from "../deps.ts";
99

1010
/**
1111
* Uncompresses a file.

zip_archive/archive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
terminateWorkers,
55
ZipReader,
66
ZipWriterStream,
7-
} from "jsr:@zip-js/zip-js";
7+
} from "../deps.ts";
88

99
/**
1010
* Uncompresses a file.

0 commit comments

Comments
 (0)