tstyche 2.0.0 → 2.1.1
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 -0
- package/build/index.d.cts +25 -0
- package/build/index.d.ts +25 -0
- package/build/tstyche.d.ts +188 -140
- package/build/tstyche.js +904 -660
- package/package.json +19 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -44,35 +44,36 @@
|
|
|
44
44
|
"clean": "rm -rf build",
|
|
45
45
|
"format": "biome format --write",
|
|
46
46
|
"generate": "yarn generate:schema && yarn generate:types",
|
|
47
|
-
"generate:schema": "node ./
|
|
48
|
-
"generate:types": "node ./
|
|
47
|
+
"generate:schema": "node ./scripts/generate-schema.js",
|
|
48
|
+
"generate:types": "node ./scripts/generate-types.js",
|
|
49
49
|
"lint": "biome lint --write",
|
|
50
50
|
"prepublish": "yarn clean && yarn build && yarn test",
|
|
51
51
|
"test": "yarn test:unit && yarn test:e2e",
|
|
52
|
-
"test:coverage": "yarn
|
|
52
|
+
"test:coverage": "yarn test:coverage:collect && yarn test:coverage:report",
|
|
53
|
+
"test:coverage:collect": "yarn build --sourcemap && NODE_V8_COVERAGE='./coverage/v8-coverage' yarn test:e2e",
|
|
54
|
+
"test:coverage:report": "node ./scripts/report-coverage.js",
|
|
53
55
|
"test:e2e": "yarn test:e2e:parallel && yarn test:e2e:serial",
|
|
54
|
-
"test:e2e:parallel": "yarn
|
|
55
|
-
"test:e2e:serial": "yarn
|
|
56
|
+
"test:e2e:parallel": "yarn poku ./tests --exclude='store|target|update|versions|watch' --parallel",
|
|
57
|
+
"test:e2e:serial": "yarn poku tests/*-{store,target,update,versions,watch}.test.*",
|
|
56
58
|
"test:examples": "tstyche examples",
|
|
57
|
-
"test:run": "mocha --config mocha.config.json",
|
|
58
59
|
"test:types": "tstyche typetests",
|
|
59
|
-
"test:unit": "yarn
|
|
60
|
+
"test:unit": "yarn poku **/__tests__/*.test.* --parallel"
|
|
60
61
|
},
|
|
61
62
|
"devDependencies": {
|
|
62
|
-
"@biomejs/biome": "1.8.
|
|
63
|
+
"@biomejs/biome": "1.8.3",
|
|
63
64
|
"@rollup/plugin-typescript": "11.1.6",
|
|
64
|
-
"@types/
|
|
65
|
-
"@types/
|
|
66
|
-
"ajv": "8.
|
|
67
|
-
"
|
|
68
|
-
"cspell": "8.8.4",
|
|
65
|
+
"@types/node": "20.14.12",
|
|
66
|
+
"@types/react": "18.3.3",
|
|
67
|
+
"ajv": "8.17.1",
|
|
68
|
+
"cspell": "8.12.1",
|
|
69
69
|
"magic-string": "0.30.10",
|
|
70
|
-
"
|
|
70
|
+
"monocart-coverage-reports": "2.9.3",
|
|
71
|
+
"poku": "2.2.3",
|
|
71
72
|
"pretty-ansi": "2.0.0",
|
|
72
|
-
"rollup": "4.
|
|
73
|
+
"rollup": "4.19.1",
|
|
73
74
|
"rollup-plugin-dts": "6.1.1",
|
|
74
75
|
"tslib": "2.6.3",
|
|
75
|
-
"typescript": "5.4
|
|
76
|
+
"typescript": "5.5.4"
|
|
76
77
|
},
|
|
77
78
|
"peerDependencies": {
|
|
78
79
|
"typescript": "4.x || 5.x"
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"optional": true
|
|
83
84
|
}
|
|
84
85
|
},
|
|
85
|
-
"packageManager": "yarn@3.8.
|
|
86
|
+
"packageManager": "yarn@3.8.3",
|
|
86
87
|
"engines": {
|
|
87
88
|
"node": ">=16.14"
|
|
88
89
|
}
|