-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Use
@std/tar
instead of @std/archive
due to deprecation
- Loading branch information
zhangfuxing
committed
Nov 5, 2024
1 parent
9e85873
commit e8c5529
Showing
15 changed files
with
470 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "@deno-library/compress", | ||
"version": "0.4.9", | ||
"version": "0.5.0", | ||
"exports": "./mod.ts" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
export { EventEmitter } from "node:events"; | ||
export { Tar } from "jsr:@std/[email protected]/tar"; | ||
export { Untar } from "jsr:@std/[email protected]/untar"; | ||
export { ensureDir, ensureFile } 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 type { Reader, Writer } from "jsr:@std/[email protected]/types"; | ||
export { UntarStream, TarStream, type TarStreamInput } from "jsr:@std/[email protected]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.