tstyche 2.0.0-beta.1 → 2.0.0-rc.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/build/tstyche.d.ts +48 -59
- package/build/tstyche.js +309 -369
- package/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tstyche",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-rc.1",
|
|
4
4
|
"description": "The Essential Type Testing Tool.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "
|
|
18
|
+
"url": "https://github.com/tstyche/tstyche.git"
|
|
19
19
|
},
|
|
20
20
|
"funding": "https://github.com/tstyche/tstyche?sponsor=1",
|
|
21
21
|
"license": "MIT",
|
|
@@ -47,8 +47,7 @@
|
|
|
47
47
|
"generate:schema": "node ./models/__scripts__/generate-schema.js",
|
|
48
48
|
"generate:types": "node ./models/__scripts__/generate-types.js",
|
|
49
49
|
"lint": "biome lint . --apply",
|
|
50
|
-
"
|
|
51
|
-
"prepublish": "yarn test",
|
|
50
|
+
"prepublish": "yarn clean && yarn build && yarn test",
|
|
52
51
|
"test": "yarn test:unit && yarn test:e2e",
|
|
53
52
|
"test:coverage": "yarn build --sourcemap && c8 --config c8.config.json yarn test:e2e",
|
|
54
53
|
"test:e2e": "yarn test:e2e:parallel && yarn test:e2e:serial",
|
|
@@ -63,10 +62,10 @@
|
|
|
63
62
|
"@biomejs/biome": "1.7.3",
|
|
64
63
|
"@rollup/plugin-typescript": "11.1.6",
|
|
65
64
|
"@types/mocha": "10.0.6",
|
|
66
|
-
"@types/node": "20.
|
|
67
|
-
"ajv": "8.
|
|
65
|
+
"@types/node": "20.14.1",
|
|
66
|
+
"ajv": "8.15.0",
|
|
68
67
|
"c8": "9.1.0",
|
|
69
|
-
"cspell": "8.8.
|
|
68
|
+
"cspell": "8.8.4",
|
|
70
69
|
"magic-string": "0.30.10",
|
|
71
70
|
"mocha": "10.4.0",
|
|
72
71
|
"pretty-ansi": "2.0.0",
|