tstyche 2.1.1 → 3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tstyche",
3
- "version": "2.1.1",
3
+ "version": "3.0.0-beta.1",
4
4
  "description": "The Essential Type Testing Tool.",
5
5
  "keywords": [
6
6
  "typescript",
@@ -47,14 +47,14 @@
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 && yarn test",
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 poku ./tests --exclude='store|target|update|versions|watch' --parallel",
57
- "test:e2e:serial": "yarn poku tests/*-{store,target,update,versions,watch}.test.*",
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
59
  "test:types": "tstyche typetests",
60
60
  "test:unit": "yarn poku **/__tests__/*.test.* --parallel"
@@ -62,17 +62,17 @@
62
62
  "devDependencies": {
63
63
  "@biomejs/biome": "1.8.3",
64
64
  "@rollup/plugin-typescript": "11.1.6",
65
- "@types/node": "20.14.12",
66
- "@types/react": "18.3.3",
65
+ "@types/node": "20.16.1",
66
+ "@types/react": "18.3.4",
67
67
  "ajv": "8.17.1",
68
- "cspell": "8.12.1",
69
- "magic-string": "0.30.10",
70
- "monocart-coverage-reports": "2.9.3",
71
- "poku": "2.2.3",
68
+ "cspell": "8.14.2",
69
+ "magic-string": "0.30.11",
70
+ "monocart-coverage-reports": "2.10.3",
71
+ "poku": "2.5.0",
72
72
  "pretty-ansi": "2.0.0",
73
- "rollup": "4.19.1",
73
+ "rollup": "4.21.0",
74
74
  "rollup-plugin-dts": "6.1.1",
75
- "tslib": "2.6.3",
75
+ "tslib": "2.7.0",
76
76
  "typescript": "5.5.4"
77
77
  },
78
78
  "peerDependencies": {
@@ -83,8 +83,8 @@
83
83
  "optional": true
84
84
  }
85
85
  },
86
- "packageManager": "yarn@3.8.3",
86
+ "packageManager": "yarn@4.4.1",
87
87
  "engines": {
88
- "node": ">=16.14"
88
+ "node": ">=18.14"
89
89
  }
90
90
  }