mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-11 09:39:44 -06:00
123 lines
3.4 KiB
JavaScript
123 lines
3.4 KiB
JavaScript
/**
|
|
|
|
How to do a release:
|
|
|
|
1. Make sure you have publish access for all packages:
|
|
- You must be in the CLI team in the npm @vue organization
|
|
- You must have publish access to vue-cli-version-marker
|
|
- Make sure you DO NOT have npm per-publish 2-factor / OTP enabled, as it
|
|
does not work with Lerna (which we use for batch publishing).
|
|
|
|
2. Run `yarn release`, follow prompts
|
|
|
|
3A. If everything works properly, the tag should have been auto-pushed and a
|
|
local changelog commit should have been generated. Go to 4.
|
|
|
|
3B. If the publish fails half-way, things have gotten hairy. Now you need to
|
|
go to npm to check which packages have been published and manually publish
|
|
the ones that have not been published yet. After all have been published:
|
|
|
|
3B.1. Push the release git tag to GitHub.
|
|
3B.2. Run `yarn changelog` to generate changelog commit.
|
|
|
|
4. Push the changelog commit to `dev` branch.
|
|
|
|
5. Go to GitHub and verify that the changelog is live.
|
|
|
|
6. Go to GitHub releases page and publish the release (this is required for
|
|
the release to show up in the issue helper)
|
|
|
|
Note: eslint-config-* packages should be released separately & manually.
|
|
|
|
*/
|
|
|
|
process.env.VUE_CLI_RELEASE = true
|
|
|
|
const execa = require('execa')
|
|
const semver = require('semver')
|
|
const inquirer = require('inquirer')
|
|
const minimist = require('minimist')
|
|
const { syncDeps } = require('./syncDeps')
|
|
// const { buildEditorConfig } = require('./buildEditorConfig')
|
|
|
|
const cliOptions = minimist(process.argv)
|
|
const curVersion = require('../lerna.json').version
|
|
|
|
const release = async () => {
|
|
console.log(`Current version: ${curVersion}`)
|
|
|
|
const bumps = ['patch', 'minor', 'major', 'prerelease']
|
|
const versions = {}
|
|
bumps.forEach(b => { versions[b] = semver.inc(curVersion, b) })
|
|
const bumpChoices = bumps.map(b => ({ name: `${b} (${versions[b]})`, value: b }))
|
|
|
|
const { bump, customVersion } = await inquirer.prompt([
|
|
{
|
|
name: 'bump',
|
|
message: 'Select release type:',
|
|
type: 'list',
|
|
choices: [
|
|
...bumpChoices,
|
|
{ name: 'custom', value: 'custom' }
|
|
]
|
|
},
|
|
{
|
|
name: 'customVersion',
|
|
message: 'Input version:',
|
|
type: 'input',
|
|
when: answers => answers.bump === 'custom'
|
|
}
|
|
])
|
|
|
|
const version = customVersion || versions[bump]
|
|
|
|
const { yes } = await inquirer.prompt([{
|
|
name: 'yes',
|
|
message: `Confirm releasing ${version}?`,
|
|
type: 'confirm'
|
|
}])
|
|
|
|
if (yes) {
|
|
await syncDeps({
|
|
version,
|
|
local: true,
|
|
skipPrompt: true
|
|
})
|
|
delete process.env.PREFIX
|
|
|
|
// buildEditorConfig()
|
|
|
|
try {
|
|
await execa('git', ['add', '-A'], { stdio: 'inherit' })
|
|
await execa('git', ['commit', '-m', 'chore: pre release sync'], { stdio: 'inherit' })
|
|
} catch (e) {
|
|
// if it's a patch release, there may be no local deps to sync
|
|
}
|
|
}
|
|
|
|
let distTag = cliOptions['dist-tag'] || 'latest'
|
|
if (bump === 'prerelease' || semver.prerelease(version)) {
|
|
distTag = 'next'
|
|
}
|
|
|
|
const lernaArgs = [
|
|
'publish',
|
|
version,
|
|
'--dist-tag',
|
|
distTag
|
|
]
|
|
// keep all packages' versions in sync
|
|
lernaArgs.push('--force-publish')
|
|
|
|
if (cliOptions['local-registry']) {
|
|
lernaArgs.push('--no-git-tag-version', '--no-commit-hooks', '--no-push', '--yes')
|
|
}
|
|
|
|
await execa(require.resolve('lerna/cli'), lernaArgs, { stdio: 'inherit' })
|
|
}
|
|
|
|
release().catch(err => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|