mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
36 lines
907 B
TypeScript
36 lines
907 B
TypeScript
#!/usr/bin/env zx
|
|
|
|
import { readFileSync } from 'node:fs'
|
|
import { fileURLToPath } from 'node:url'
|
|
import { $ } from 'zx'
|
|
|
|
let version = process.argv[2]
|
|
|
|
if (!version)
|
|
throw new Error('No tag specified')
|
|
|
|
if (version.startsWith('v'))
|
|
version = version.slice(1)
|
|
|
|
const pkgPath = fileURLToPath(new URL('../package.json', import.meta.url))
|
|
const pkg = JSON.parse(readFileSync(pkgPath, 'utf-8'))
|
|
|
|
if (pkg.version !== version) {
|
|
throw new Error(
|
|
`Package version from tag "${version}" mismatches with the current version "${pkg.version}"`,
|
|
)
|
|
}
|
|
|
|
const releaseTag = version.includes('beta')
|
|
? 'beta'
|
|
: version.includes('alpha')
|
|
? 'alpha'
|
|
: undefined
|
|
|
|
console.log('Publishing version', version, 'with tag', releaseTag || 'latest')
|
|
|
|
if (releaseTag)
|
|
await $`pnpm -r publish --access public --no-git-checks --tag ${releaseTag}`
|
|
else
|
|
await $`pnpm -r publish --access public --no-git-checks`
|