Skip to content

Commit 9a4d332

Browse files
committed
doc: Removed mentions of missing files.
1 parent 7004c47 commit 9a4d332

6 files changed

Lines changed: 3 additions & 8 deletions

File tree

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
src
2-
src.legacy
32
test
43
examples
54
.github

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,6 @@ The browser bundle silently falls back to jsbn on runtimes without
154154
`noImplicitOverride` etc.
155155
- 1006 test cases across 27 files. The v1 mocha suite of 61 `it()` blocks is
156156
ported verbatim and runs in both vitest projects.
157-
- The legacy v1 source is preserved in `src.legacy/` during the port and
158-
deleted on the v2.0.0 release commit.
159157

160158
## 1.1.1 and earlier
161159

biome.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"includes": [
1010
"**",
1111
"!**/dist",
12-
"!**/src.legacy",
1312
"!**/node_modules",
1413
"!**/coverage",
1514
"!**/.tmp",

src/bigint/big-integer-jsbn.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
/*
22
* TypeScript port of Tom Wu's jsbn BigInteger.
33
*
4-
* Original copyright (c) 2003-2009 Tom Wu — MIT-style license preserved in
5-
* src.legacy/libs/jsbn.js. Buffer support added by rzcoder (2014).
4+
* Original copyright (c) 2003-2009 Tom Wu.
65
*
76
* This port preserves the original digit representation, function names, and
87
* algorithm structure 1-to-1 with the legacy implementation so that all

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
"ignoreDeprecations": "6.0"
3434
},
3535
"include": ["src/**/*"],
36-
"exclude": ["node_modules", "dist", "src.legacy", "test", "bench", "examples", ".tmp"]
36+
"exclude": ["node_modules", "dist", "test", "bench", "examples", ".tmp"]
3737
}

tsconfig.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
"vitest.bench.config.ts",
1414
"tsup.config.ts"
1515
],
16-
"exclude": ["node_modules", "dist", "src.legacy", ".tmp"]
16+
"exclude": ["node_modules", "dist", ".tmp"]
1717
}

0 commit comments

Comments
 (0)