@fgv/ts-extras 5.0.0-22 → 5.0.0-24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +0 -15
- package/lib/packlets/zip-file-tree/zipFileTreeAccessors.js +1 -6
- package/package.json +9 -9
- package/.vscode/settings.json +0 -27
- package/dist/ts-extras.d.ts +0 -602
- package/dist/tsdoc-metadata.json +0 -11
- package/lib/test/unit/converters.test.d.ts +0 -2
- package/lib/test/unit/csvHelpers.test.d.ts +0 -2
- package/lib/test/unit/extendedArray.test.d.ts +0 -2
- package/lib/test/unit/formatter.test.d.ts +0 -2
- package/lib/test/unit/md5Normalizer.test.d.ts +0 -2
- package/lib/test/unit/rangeOf.test.d.ts +0 -2
- package/lib/test/unit/recordJarHelpers.test.d.ts +0 -2
- package/lib/test/unit/zipFileTreeAccessors.test.d.ts +0 -2
- package/src/index.ts +0 -31
- package/src/packlets/conversion/converters.ts +0 -124
- package/src/packlets/conversion/index.ts +0 -25
- package/src/packlets/csv/csvHelpers.ts +0 -58
- package/src/packlets/csv/index.ts +0 -23
- package/src/packlets/experimental/extendedArray.ts +0 -110
- package/src/packlets/experimental/formatter.ts +0 -114
- package/src/packlets/experimental/index.ts +0 -25
- package/src/packlets/experimental/rangeOf.ts +0 -222
- package/src/packlets/hash/index.ts +0 -23
- package/src/packlets/hash/md5Normalizer.ts +0 -38
- package/src/packlets/record-jar/index.ts +0 -23
- package/src/packlets/record-jar/recordJarHelpers.ts +0 -278
- package/src/packlets/zip-file-tree/index.ts +0 -33
- package/src/packlets/zip-file-tree/zipFileTreeAccessors.ts +0 -404
package/CHANGELOG.json
CHANGED
|
@@ -1,21 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fgv/ts-extras",
|
|
3
3
|
"entries": [
|
|
4
|
-
{
|
|
5
|
-
"version": "5.0.0",
|
|
6
|
-
"tag": "@fgv/ts-extras_v5.0.0",
|
|
7
|
-
"date": "Thu, 17 Jul 2025 00:13:24 GMT",
|
|
8
|
-
"comments": {
|
|
9
|
-
"none": [
|
|
10
|
-
{
|
|
11
|
-
"comment": "upgrade dependencies"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"comment": "bump version"
|
|
15
|
-
}
|
|
16
|
-
]
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
4
|
{
|
|
20
5
|
"version": "4.6.0",
|
|
21
6
|
"tag": "@fgv/ts-extras_v4.6.0",
|
|
@@ -53,12 +53,7 @@ class ZipFileItem {
|
|
|
53
53
|
return (0, ts_utils_1.captureResult)(() => {
|
|
54
54
|
const parsed = JSON.parse(contents);
|
|
55
55
|
if (converter) {
|
|
56
|
-
|
|
57
|
-
return converter.convert(parsed);
|
|
58
|
-
} /* c8 ignore next 3 - validator branch functionally tested but coverage tool misses due to interface complexity */
|
|
59
|
-
else {
|
|
60
|
-
return converter.validate(parsed);
|
|
61
|
-
}
|
|
56
|
+
return converter.convert(parsed);
|
|
62
57
|
}
|
|
63
58
|
return (0, ts_utils_1.succeed)(parsed);
|
|
64
59
|
}).onFailure(() => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fgv/ts-extras",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-24",
|
|
4
4
|
"description": "Assorted Typescript Utilities",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "dist/ts-extras.d.ts",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"rimraf": "^5.0.7",
|
|
37
37
|
"ts-jest": "^29.4.1",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
|
-
"typescript": "
|
|
39
|
+
"typescript": "5.8.3",
|
|
40
40
|
"eslint-plugin-n": "^16.6.2",
|
|
41
41
|
"jest-snapshot": "~29.7.0",
|
|
42
|
-
"@rushstack/heft": "
|
|
43
|
-
"@rushstack/heft-node-rig": "
|
|
44
|
-
"@rushstack/eslint-config": "
|
|
42
|
+
"@rushstack/heft": "0.74.3",
|
|
43
|
+
"@rushstack/heft-node-rig": "2.9.4",
|
|
44
|
+
"@rushstack/eslint-config": "4.4.0",
|
|
45
45
|
"@types/heft-jest": "1.0.6",
|
|
46
|
-
"@rushstack/heft-jest-plugin": "
|
|
46
|
+
"@rushstack/heft-jest-plugin": "0.16.12",
|
|
47
47
|
"eslint-plugin-tsdoc": "~0.4.0",
|
|
48
|
-
"@fgv/ts-utils
|
|
49
|
-
"@fgv/ts-utils": "5.0.0-
|
|
48
|
+
"@fgv/ts-utils": "5.0.0-24",
|
|
49
|
+
"@fgv/ts-utils-jest": "5.0.0-24"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"luxon": "^3.7.1",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"fflate": "~0.8.2"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@fgv/ts-utils": "5.0.0-
|
|
58
|
+
"@fgv/ts-utils": "5.0.0-24"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"build": "heft test --clean",
|
package/.vscode/settings.json
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"typescript.tsdk": "node_modules\\typescript\\lib",
|
|
3
|
-
"search.exclude": {
|
|
4
|
-
"**/boneyard": true
|
|
5
|
-
},
|
|
6
|
-
"files.exclude": {
|
|
7
|
-
"**/boneyard/**/*.ts": true
|
|
8
|
-
},
|
|
9
|
-
"cSpell.words": [
|
|
10
|
-
"badp",
|
|
11
|
-
"dflt",
|
|
12
|
-
"Eulers",
|
|
13
|
-
"fixlint",
|
|
14
|
-
"furst",
|
|
15
|
-
"luxon",
|
|
16
|
-
"nums",
|
|
17
|
-
"oopsy",
|
|
18
|
-
"papaparse",
|
|
19
|
-
"prefixp",
|
|
20
|
-
"TCONV",
|
|
21
|
-
"TDEST",
|
|
22
|
-
"TELEM",
|
|
23
|
-
"TSRC",
|
|
24
|
-
"TTOELEM",
|
|
25
|
-
"xyzzy"
|
|
26
|
-
]
|
|
27
|
-
}
|