tstyche 2.0.0-beta.0 → 2.0.0-rc.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/build/tstyche.d.ts +329 -270
- package/build/tstyche.js +2519 -2499
- package/package.json +22 -28
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.0",
|
|
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",
|
|
@@ -38,47 +38,41 @@
|
|
|
38
38
|
"bench": "./benchmarks/tstyche.bench.sh",
|
|
39
39
|
"build": "rollup --config rollup.config.js",
|
|
40
40
|
"build:watch": "yarn build --sourcemap --watch",
|
|
41
|
-
"check": "yarn check:spelling && yarn check:
|
|
42
|
-
"check:formatting": "dprint check",
|
|
41
|
+
"check": "yarn check:spelling && yarn check:types",
|
|
43
42
|
"check:spelling": "cspell --config cspell.config.json --quiet",
|
|
44
43
|
"check:types": "tsc --noEmit --project tsconfig.json",
|
|
45
44
|
"clean": "rm -rf build",
|
|
46
|
-
"format": "
|
|
45
|
+
"format": "biome format . --write",
|
|
47
46
|
"generate": "yarn generate:schema && yarn generate:types",
|
|
48
47
|
"generate:schema": "node ./models/__scripts__/generate-schema.js",
|
|
49
48
|
"generate:types": "node ./models/__scripts__/generate-types.js",
|
|
50
|
-
"lint": "
|
|
51
|
-
"
|
|
52
|
-
"prepublish": "yarn test",
|
|
49
|
+
"lint": "biome lint . --apply",
|
|
50
|
+
"prepublish": "yarn clean && yarn build && yarn test",
|
|
53
51
|
"test": "yarn test:unit && yarn test:e2e",
|
|
54
52
|
"test:coverage": "yarn build --sourcemap && c8 --config c8.config.json yarn test:e2e",
|
|
55
|
-
"test:e2e": "
|
|
53
|
+
"test:e2e": "yarn test:e2e:parallel && yarn test:e2e:serial",
|
|
54
|
+
"test:e2e:parallel": "yarn test:run tests/*.test.* --exclude tests/feature-watch.test.js --parallel --reporter dot",
|
|
55
|
+
"test:e2e:serial": "yarn test:run tests/feature-watch.test.js --reporter dot",
|
|
56
56
|
"test:examples": "tstyche examples",
|
|
57
|
+
"test:run": "mocha --config mocha.config.json",
|
|
57
58
|
"test:types": "tstyche typetests",
|
|
58
|
-
"test:unit": "
|
|
59
|
+
"test:unit": "yarn test:run **/__tests__/*.test.* --parallel --reporter dot"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
62
|
+
"@biomejs/biome": "1.7.3",
|
|
61
63
|
"@rollup/plugin-typescript": "11.1.6",
|
|
62
64
|
"@types/mocha": "10.0.6",
|
|
63
|
-
"@types/node": "20.
|
|
64
|
-
"
|
|
65
|
-
"@typescript-eslint/parser": "7.4.0",
|
|
66
|
-
"ajv": "8.12.0",
|
|
65
|
+
"@types/node": "20.14.0",
|
|
66
|
+
"ajv": "8.14.0",
|
|
67
67
|
"c8": "9.1.0",
|
|
68
|
-
"cspell": "8.
|
|
69
|
-
"
|
|
70
|
-
"eslint": "8.57.0",
|
|
71
|
-
"eslint-import-resolver-typescript": "3.6.1",
|
|
72
|
-
"eslint-plugin-import": "2.29.1",
|
|
73
|
-
"eslint-plugin-mocha": "10.4.1",
|
|
74
|
-
"eslint-plugin-simple-import-sort": "12.0.0",
|
|
75
|
-
"magic-string": "0.30.8",
|
|
68
|
+
"cspell": "8.8.3",
|
|
69
|
+
"magic-string": "0.30.10",
|
|
76
70
|
"mocha": "10.4.0",
|
|
77
71
|
"pretty-ansi": "2.0.0",
|
|
78
|
-
"rollup": "4.
|
|
79
|
-
"rollup-plugin-dts": "6.1.
|
|
72
|
+
"rollup": "4.18.0",
|
|
73
|
+
"rollup-plugin-dts": "6.1.1",
|
|
80
74
|
"tslib": "2.6.2",
|
|
81
|
-
"typescript": "5.4.
|
|
75
|
+
"typescript": "5.4.5"
|
|
82
76
|
},
|
|
83
77
|
"peerDependencies": {
|
|
84
78
|
"typescript": "4.x || 5.x"
|
|
@@ -88,8 +82,8 @@
|
|
|
88
82
|
"optional": true
|
|
89
83
|
}
|
|
90
84
|
},
|
|
91
|
-
"packageManager": "yarn@3.8.
|
|
85
|
+
"packageManager": "yarn@3.8.2",
|
|
92
86
|
"engines": {
|
|
93
|
-
"node": ">=14
|
|
87
|
+
"node": ">=16.14"
|
|
94
88
|
}
|
|
95
|
-
}
|
|
89
|
+
}
|