tstyche 2.1.0 → 3.0.0-beta.0
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/README.md +1 -7
- package/build/tstyche.d.ts +27 -28
- package/build/tstyche.js +443 -429
- package/package.json +14 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.0",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -47,35 +47,33 @@
|
|
|
47
47
|
"generate:schema": "node ./scripts/generate-schema.js",
|
|
48
48
|
"generate:types": "node ./scripts/generate-types.js",
|
|
49
49
|
"lint": "biome lint --write",
|
|
50
|
-
"prepublish": "yarn clean && yarn build
|
|
50
|
+
"prepublish": "yarn clean && yarn build",
|
|
51
51
|
"test": "yarn test:unit && yarn test:e2e",
|
|
52
52
|
"test:coverage": "yarn test:coverage:collect && yarn test:coverage:report",
|
|
53
53
|
"test:coverage:collect": "yarn build --sourcemap && NODE_V8_COVERAGE='./coverage/v8-coverage' yarn test:e2e",
|
|
54
54
|
"test:coverage:report": "node ./scripts/report-coverage.js",
|
|
55
55
|
"test:e2e": "yarn test:e2e:parallel && yarn test:e2e:serial",
|
|
56
|
-
"test:e2e:parallel": "yarn
|
|
57
|
-
"test:e2e:serial": "yarn
|
|
56
|
+
"test:e2e:parallel": "yarn poku tests/*.test.* --exclude='install|npmRegistry|store|target|typescript|update|watch' --parallel",
|
|
57
|
+
"test:e2e:serial": "yarn poku tests/*-{install,npmRegistry,store*,target,typescript*,update,watch}.test.*",
|
|
58
58
|
"test:examples": "tstyche examples",
|
|
59
|
-
"test:run": "mocha --config mocha.config.json",
|
|
60
59
|
"test:types": "tstyche typetests",
|
|
61
|
-
"test:unit": "yarn
|
|
60
|
+
"test:unit": "yarn poku **/__tests__/*.test.* --parallel"
|
|
62
61
|
},
|
|
63
62
|
"devDependencies": {
|
|
64
63
|
"@biomejs/biome": "1.8.3",
|
|
65
64
|
"@rollup/plugin-typescript": "11.1.6",
|
|
66
|
-
"@types/
|
|
67
|
-
"@types/node": "20.14.10",
|
|
65
|
+
"@types/node": "20.14.15",
|
|
68
66
|
"@types/react": "18.3.3",
|
|
69
67
|
"ajv": "8.17.1",
|
|
70
|
-
"cspell": "8.
|
|
71
|
-
"magic-string": "0.30.
|
|
72
|
-
"
|
|
73
|
-
"
|
|
68
|
+
"cspell": "8.13.2",
|
|
69
|
+
"magic-string": "0.30.11",
|
|
70
|
+
"monocart-coverage-reports": "2.10.2",
|
|
71
|
+
"poku": "2.4.3",
|
|
74
72
|
"pretty-ansi": "2.0.0",
|
|
75
|
-
"rollup": "4.
|
|
73
|
+
"rollup": "4.20.0",
|
|
76
74
|
"rollup-plugin-dts": "6.1.1",
|
|
77
75
|
"tslib": "2.6.3",
|
|
78
|
-
"typescript": "5.5.
|
|
76
|
+
"typescript": "5.5.4"
|
|
79
77
|
},
|
|
80
78
|
"peerDependencies": {
|
|
81
79
|
"typescript": "4.x || 5.x"
|
|
@@ -85,8 +83,8 @@
|
|
|
85
83
|
"optional": true
|
|
86
84
|
}
|
|
87
85
|
},
|
|
88
|
-
"packageManager": "yarn@
|
|
86
|
+
"packageManager": "yarn@4.4.0",
|
|
89
87
|
"engines": {
|
|
90
|
-
"node": ">=
|
|
88
|
+
"node": ">=18.14"
|
|
91
89
|
}
|
|
92
90
|
}
|