Skip to content

Commit f3a02ae

Browse files
committed
fix: reorder validation scripts in release.mjs
1 parent ed2beb4 commit f3a02ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/release.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { cancel, confirm, intro, isCancel, outro } from '@clack/prompts'
77
const repoRoot = resolve(dirname(fileURLToPath(import.meta.url)), '..')
88
const gitBinary = 'git'
99
const pnpmBinary = process.platform === 'win32' ? 'pnpm.cmd' : 'pnpm'
10-
const validationScripts = ['lint', 'typecheck', 'build']
10+
const validationScripts = ['lint', 'build', 'typecheck']
1111
const commitMessage = 'chore: bump version'
1212
const releaseBranch = 'main'
1313
const releaseRemote = 'origin'

0 commit comments

Comments
 (0)