4335cbbc64
A single top-level `vp run check:type` should fan out (-r) and fully type-check every package, fixtures included — no separate top-level check:fixtures step. runtime-tests' check:type now runs its main tsc then its fixtures tsc (check:fixtures stays as a runnable sub-script). Drop the root check:fixtures entry and its standalone step in ready.
30 lines
883 B
JSON
30 lines
883 B
JSON
{
|
|
"name": "@vue-tui/runtime-tests",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "vp run test:integration && vp run test:pty",
|
|
"test:integration": "vp test",
|
|
"test:pty": "vp test run --config vitest.pty.config.ts --passWithNoTests",
|
|
"check:type": "tsc --noEmit && vp run check:fixtures",
|
|
"check:fixtures": "tsc -p integration/pty/fixtures/tsconfig.json --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.9.1",
|
|
"@vitejs/plugin-vue-jsx": "catalog:",
|
|
"@vue-tui/runtime": "workspace:*",
|
|
"@vue-tui/testing": "workspace:*",
|
|
"ansi-escapes": "catalog:",
|
|
"chalk": "catalog:",
|
|
"is-in-ci": "catalog:",
|
|
"node-pty": "catalog:",
|
|
"string-width": "catalog:",
|
|
"strip-ansi": "catalog:",
|
|
"tsx": "catalog:",
|
|
"typescript": "^6.0.3",
|
|
"vite-plus": "^0.1.22",
|
|
"vue": "^3.5.34"
|
|
}
|
|
}
|