tstyche 2.0.0-beta.0 → 2.0.0-beta.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.
Files changed (3) hide show
  1. package/build/tstyche.d.ts +302 -232
  2. package/build/tstyche.js +2477 -2396
  3. package/package.json +20 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tstyche",
3
- "version": "2.0.0-beta.0",
3
+ "version": "2.0.0-beta.1",
4
4
  "description": "The Essential Type Testing Tool.",
5
5
  "keywords": [
6
6
  "typescript",
@@ -38,47 +38,42 @@
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:formatting",
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": "dprint fmt",
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": "eslint ./ --config eslint.config.json --ext .js,.cts,.ts,.tsx",
49
+ "lint": "biome lint . --apply",
51
50
  "prepack": "yarn clean && yarn build",
52
51
  "prepublish": "yarn test",
53
52
  "test": "yarn test:unit && yarn test:e2e",
54
53
  "test:coverage": "yarn build --sourcemap && c8 --config c8.config.json yarn test:e2e",
55
- "test:e2e": "mocha tests/*.test.* --config mocha.config.json",
54
+ "test:e2e": "yarn test:e2e:parallel && yarn test:e2e:serial",
55
+ "test:e2e:parallel": "yarn test:run tests/*.test.* --exclude tests/feature-watch.test.js --parallel --reporter dot",
56
+ "test:e2e:serial": "yarn test:run tests/feature-watch.test.js --reporter dot",
56
57
  "test:examples": "tstyche examples",
58
+ "test:run": "mocha --config mocha.config.json",
57
59
  "test:types": "tstyche typetests",
58
- "test:unit": "mocha **/__tests__/*.test.* --config mocha.config.json"
60
+ "test:unit": "yarn test:run **/__tests__/*.test.* --parallel --reporter dot"
59
61
  },
60
62
  "devDependencies": {
63
+ "@biomejs/biome": "1.7.3",
61
64
  "@rollup/plugin-typescript": "11.1.6",
62
65
  "@types/mocha": "10.0.6",
63
- "@types/node": "20.11.30",
64
- "@typescript-eslint/eslint-plugin": "7.4.0",
65
- "@typescript-eslint/parser": "7.4.0",
66
- "ajv": "8.12.0",
66
+ "@types/node": "20.12.12",
67
+ "ajv": "8.14.0",
67
68
  "c8": "9.1.0",
68
- "cspell": "8.6.1",
69
- "dprint": "0.45.0",
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",
69
+ "cspell": "8.8.3",
70
+ "magic-string": "0.30.10",
76
71
  "mocha": "10.4.0",
77
72
  "pretty-ansi": "2.0.0",
78
- "rollup": "4.13.1",
79
- "rollup-plugin-dts": "6.1.0",
73
+ "rollup": "4.18.0",
74
+ "rollup-plugin-dts": "6.1.1",
80
75
  "tslib": "2.6.2",
81
- "typescript": "5.4.3"
76
+ "typescript": "5.4.5"
82
77
  },
83
78
  "peerDependencies": {
84
79
  "typescript": "4.x || 5.x"
@@ -88,8 +83,8 @@
88
83
  "optional": true
89
84
  }
90
85
  },
91
- "packageManager": "yarn@3.8.1",
86
+ "packageManager": "yarn@3.8.2",
92
87
  "engines": {
93
- "node": ">=14.17"
88
+ "node": ">=16.14"
94
89
  }
95
- }
90
+ }