Skip to content

Commit

Permalink
fix: specifier 'jsr:@zip-js/zip-js' is missing a version constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangfuxing committed Nov 6, 2024
1 parent 57c542b commit b94b5c6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
16 changes: 14 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
export { EventEmitter } from "node:events";
export { exists, ensureDir } from "jsr:@std/[email protected]";
export { ensureDir, exists } from "jsr:@std/[email protected]";
export * as path from "jsr:@std/[email protected]";
export { Buffer, copy, readAll, writeAll } from "jsr:@std/[email protected]";
export { crc32, Crc32Stream } from "jsr:@deno-library/[email protected]";
export type { Reader, Writer } from "jsr:@std/[email protected]/types";
export { UntarStream, TarStream, type TarStreamInput } from "jsr:@std/[email protected]";
export {
TarStream,
type TarStreamInput,
UntarStream,
} from "jsr:@std/[email protected]";
export {
type EntryMetaData,
terminateWorkers,
ZipReader,
ZipReaderStream,
ZipWriter,
ZipWriterStream,
} from "jsr:@zip-js/[email protected]";
2 changes: 1 addition & 1 deletion zip/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
terminateWorkers,
ZipReaderStream,
ZipWriter,
} from "jsr:@zip-js/zip-js";
} from "../deps.ts";

/**
* Uncompresses a file.
Expand Down
2 changes: 1 addition & 1 deletion zip_archive/archive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
terminateWorkers,
ZipReader,
ZipWriterStream,
} from "jsr:@zip-js/zip-js";
} from "../deps.ts";

/**
* Uncompresses a file.
Expand Down

0 comments on commit b94b5c6

Please sign in to comment.