mirror of https://github.com/vuejs/vitepress
chore: update release script to match with other latest vue libs (#134)
parent
67868bd928
commit
22b34e7ac9
@ -0,0 +1,110 @@
|
|||||||
|
const fs = require('fs')
|
||||||
|
const path = require('path')
|
||||||
|
const chalk = require('chalk')
|
||||||
|
const semver = require('semver')
|
||||||
|
const { prompt } = require('enquirer')
|
||||||
|
const execa = require('execa')
|
||||||
|
const currentVersion = require('../package.json').version
|
||||||
|
|
||||||
|
const versionIncrements = ['patch', 'minor', 'major']
|
||||||
|
|
||||||
|
const tags = ['latest', 'next']
|
||||||
|
|
||||||
|
const inc = (i) => semver.inc(currentVersion, i)
|
||||||
|
const bin = (name) => path.resolve(__dirname, `../node_modules/.bin/${name}`)
|
||||||
|
const run = (bin, args, opts = {}) =>
|
||||||
|
execa(bin, args, { stdio: 'inherit', ...opts })
|
||||||
|
const step = (msg) => console.log(chalk.cyan(msg))
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
let targetVersion
|
||||||
|
|
||||||
|
const { release } = await prompt({
|
||||||
|
type: 'select',
|
||||||
|
name: 'release',
|
||||||
|
message: 'Select release type',
|
||||||
|
choices: versionIncrements.map((i) => `${i} (${inc(i)})`).concat(['custom'])
|
||||||
|
})
|
||||||
|
|
||||||
|
if (release === 'custom') {
|
||||||
|
targetVersion = (
|
||||||
|
await prompt({
|
||||||
|
type: 'input',
|
||||||
|
name: 'version',
|
||||||
|
message: 'Input custom version',
|
||||||
|
initial: currentVersion
|
||||||
|
})
|
||||||
|
).version
|
||||||
|
} else {
|
||||||
|
targetVersion = release.match(/\((.*)\)/)[1]
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!semver.valid(targetVersion)) {
|
||||||
|
throw new Error(`Invalid target version: ${targetVersion}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const { tag } = await prompt({
|
||||||
|
type: 'select',
|
||||||
|
name: 'tag',
|
||||||
|
message: 'Select tag type',
|
||||||
|
choices: tags
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(tag)
|
||||||
|
|
||||||
|
const { yes } = await prompt({
|
||||||
|
type: 'confirm',
|
||||||
|
name: 'yes',
|
||||||
|
message: `Releasing v${targetVersion} with the "${tag}" tag. Confirm?`
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!yes) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update the package version.
|
||||||
|
step('\nUpdating the package version...')
|
||||||
|
updatePackage(targetVersion)
|
||||||
|
|
||||||
|
// Build the package.
|
||||||
|
step('\nBuilding the package...')
|
||||||
|
await run('yarn', ['build'])
|
||||||
|
|
||||||
|
// Generate the changelog.
|
||||||
|
step('\nGenerating the changelog...')
|
||||||
|
await run('yarn', ['changelog'])
|
||||||
|
|
||||||
|
// Commit changes to the Git.
|
||||||
|
step('\nCommitting changes...')
|
||||||
|
await run('git', ['add', '-A'])
|
||||||
|
await run('git', ['commit', '-m', `release: v${targetVersion}`])
|
||||||
|
|
||||||
|
// Publish the package.
|
||||||
|
step('\nPublishing the package...')
|
||||||
|
await run('yarn', [
|
||||||
|
'publish',
|
||||||
|
'--tag',
|
||||||
|
tag,
|
||||||
|
'--new-version',
|
||||||
|
targetVersion,
|
||||||
|
'--no-commit-hooks',
|
||||||
|
'--no-git-tag-version'
|
||||||
|
])
|
||||||
|
|
||||||
|
// Push to GitHub.
|
||||||
|
step('\nPushing to GitHub...')
|
||||||
|
await run('git', ['tag', `v${targetVersion}`])
|
||||||
|
await run('git', ['push', 'origin', `refs/tags/v${targetVersion}`])
|
||||||
|
await run('git', ['push'])
|
||||||
|
}
|
||||||
|
|
||||||
|
function updatePackage(version) {
|
||||||
|
const pkgPath = path.resolve(path.resolve(__dirname, '..'), 'package.json')
|
||||||
|
const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf-8'))
|
||||||
|
|
||||||
|
pkg.version = version
|
||||||
|
|
||||||
|
fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + '\n')
|
||||||
|
}
|
||||||
|
|
||||||
|
main().catch((err) => console.error(err))
|
@ -1,34 +0,0 @@
|
|||||||
set -e
|
|
||||||
echo "Current version:" $(grep version package.json | sed -E 's/^.*"([0-9][^"]+)".*$/\1/')
|
|
||||||
echo "Enter the new version you want to publish e.g., 0.0.2: "
|
|
||||||
read VERSION
|
|
||||||
|
|
||||||
read -p "Releasing v$VERSION - are you sure? (y/n)" -n 1 -r
|
|
||||||
echo # (optional) move to a new line
|
|
||||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
|
||||||
then
|
|
||||||
echo "Releasing v$VERSION ..."
|
|
||||||
|
|
||||||
# generate the version so that the changelog can be generated too
|
|
||||||
yarn version --no-git-tag-version --no-commit-hooks --new-version $VERSION
|
|
||||||
|
|
||||||
yarn run build
|
|
||||||
|
|
||||||
# changelog
|
|
||||||
yarn run changelog
|
|
||||||
yarn prettier --write CHANGELOG.md
|
|
||||||
echo "Please check the git history and the changelog and press enter"
|
|
||||||
read OKAY
|
|
||||||
|
|
||||||
# commit and tag
|
|
||||||
git add CHANGELOG.md package.json
|
|
||||||
git commit -m "release: v$VERSION"
|
|
||||||
git tag "v$VERSION"
|
|
||||||
|
|
||||||
# commit
|
|
||||||
yarn publish --new-version "$VERSION" --no-commit-hooks --no-git-tag-version
|
|
||||||
|
|
||||||
# publish
|
|
||||||
git push origin refs/tags/v$VERSION
|
|
||||||
git push
|
|
||||||
fi
|
|
Loading…
Reference in new issue