Skip to content

Commit 21e04f5

Browse files
Fix prerelease TypeScript check command
1 parent b680ff7 commit 21e04f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/pre-release-check.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ async function main() {
319319

320320
// Check: TypeScript
321321
await runCheck("TypeScript type check", async () => {
322-
const result = await $`bunx vp check --no-fmt --no-lint`.quiet().nothrow();
322+
const result = await $`bun typecheck`.quiet().nothrow();
323323
if (result.exitCode !== 0) {
324324
return { passed: false, message: "Type errors found" };
325325
}

0 commit comments

Comments
 (0)