6d856f8913
Add a "test" script (vp test --passWithNoTests) to @vue-tui/cli and a ci:test:cli branch (dependsOn ci:build) to the run.tasks graph. No CLI tests exist yet, but wiring the branch now means future CLI tests are covered automatically rather than silently skipped. #26 (item 3).
37 lines
729 B
JSON
37 lines
729 B
JSON
{
|
|
"name": "@vue-tui/cli",
|
|
"version": "0.0.2",
|
|
"description": "Development server for Vue 3 terminal apps with Yoga flexbox layout.",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"vue-tui": "./dist/index.mjs"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "vp pack",
|
|
"dev": "vp pack --watch",
|
|
"test": "vp test --passWithNoTests",
|
|
"check:type": "tsc --noEmit",
|
|
"prepublishOnly": "vp run build"
|
|
},
|
|
"dependencies": {
|
|
"vite": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"typescript": "^6.0.3",
|
|
"vite-plus": "catalog:"
|
|
}
|
|
}
|