We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b680ff7 commit 21e04f5Copy full SHA for 21e04f5
1 file changed
scripts/pre-release-check.ts
@@ -319,7 +319,7 @@ async function main() {
319
320
// Check: TypeScript
321
await runCheck("TypeScript type check", async () => {
322
- const result = await $`bunx vp check --no-fmt --no-lint`.quiet().nothrow();
+ const result = await $`bun typecheck`.quiet().nothrow();
323
if (result.exitCode !== 0) {
324
return { passed: false, message: "Type errors found" };
325
}
0 commit comments