Skip to content

Commit ece0256

Browse files
authored
BREAKING(archive): remove std/archive package (denoland#6185)
1 parent 90e4aef commit ece0256

21 files changed

+244
-2145
lines changed

.github/dependency_graph.svg

+244-238
Loading

.github/labeler.yml

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
archive:
2-
- changed-files:
3-
- any-glob-to-any-file: archive/**
41
assert:
52
- changed-files:
63
- any-glob-to-any-file: assert/**

.github/workflows/title.yml

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
revert
3636
# This should be kept up-to-date with the current packages list
3737
scopes: |
38-
archive(/unstable)?
3938
assert(/unstable)?
4039
async(/unstable)?
4140
bytes(/unstable)?

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ documentation:
1818

1919
| Package | Latest version |
2020
| ------------------------------------------------------ | ----------------------------------------------------------------------------------------- |
21-
| [archive](https://jsr.io/@std/archive) | [![JSR](https://jsr.io/badges/@std/archive)](https://jsr.io/@std/archive) |
2221
| [assert](https://jsr.io/@std/assert) | [![JSR](https://jsr.io/badges/@std/assert)](https://jsr.io/@std/assert) |
2322
| [async](https://jsr.io/@std/async) | [![JSR](https://jsr.io/badges/@std/async)](https://jsr.io/@std/async) |
2423
| [bytes](https://jsr.io/@std/bytes) | [![JSR](https://jsr.io/badges/@std/bytes)](https://jsr.io/@std/bytes) |

_tools/check_circular_package_dependencies.ts

-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ type Dep = {
3535
state: DepState;
3636
};
3737
type Mod =
38-
| "archive"
3938
| "assert"
4039
| "async"
4140
| "bytes"
@@ -79,7 +78,6 @@ type Mod =
7978
| "yaml";
8079

8180
const ENTRYPOINTS: Record<Mod, string[]> = {
82-
archive: ["mod.ts"],
8381
assert: ["mod.ts"],
8482
async: ["mod.ts"],
8583
bytes: ["mod.ts"],

_tools/check_docs.ts

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ type DocNodeWithJsDoc<T = DocNodeBase> = T & {
3030
};
3131

3232
const ENTRY_POINTS = [
33-
"../archive/mod.ts",
3433
"../assert/mod.ts",
3534
"../assert/unstable_never.ts",
3635
"../async/mod.ts",

archive/_common.ts

-206
This file was deleted.

archive/_multi_reader.ts

-24
This file was deleted.

archive/_test_utils.ts

-6
This file was deleted.

archive/deno.json

-9
This file was deleted.

archive/mod.ts

-73
This file was deleted.

0 commit comments

Comments
 (0)