chore(cli): add smoke tests (#489)

This commit is contained in:
Aman Varshney
2025-08-11 02:56:25 +05:30
committed by GitHub
parent d6cf5c9d26
commit 198d6e968b
9 changed files with 2831 additions and 51 deletions

View File

@@ -49,7 +49,8 @@
"dev": "tsdown --watch",
"check-types": "tsc --noEmit",
"check": "biome check --write .",
"test": "vitest run",
"test": "bun run build && vitest run",
"test:with-build": "bun run build && WITH_BUILD=1 vitest run",
"prepublishOnly": "npm run build"
},
"dependencies": {
@@ -70,6 +71,7 @@
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.2.0",
"tsdown": "^0.13.3",
"typescript": "^5.9.2"
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}