mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
import { execSync } from 'node:child_process'
|
|
import { $fetch } from 'ofetch'
|
|
import { inc } from 'semver'
|
|
import { getGitDiff, determineSemverChange, loadChangelogConfig, parseCommits } from 'changelogen'
|
|
import { execaSync } from 'execa'
|
|
import { loadWorkspace } from './_utils'
|
|
|
|
async function main () {
|
|
const workspace = await loadWorkspace(process.cwd())
|
|
|
|
const commit = execSync('git rev-parse --short HEAD').toString('utf-8').trim().slice(0, 8)
|
|
const date = Math.round(Date.now() / (1000 * 60))
|
|
|
|
const nuxtPkg = workspace.find('nuxt')
|
|
const nitroInfo = await $fetch('https://registry.npmjs.org/nitropack-edge')
|
|
const latestNitro = nitroInfo['dist-tags'].latest
|
|
nuxtPkg.data.dependencies.nitropack = `npm:nitropack-edge@^${latestNitro}`
|
|
|
|
const config = await loadChangelogConfig(process.cwd())
|
|
|
|
const latestTag = execaSync('git', ['describe', '--tags', '--abbrev=0']).stdout
|
|
|
|
const commits = await getGitDiff(latestTag)
|
|
let bumpType = determineSemverChange(parseCommits(commits, config), config)
|
|
if (bumpType === 'major') { bumpType = 'minor' } // 🙈
|
|
|
|
for (const pkg of workspace.packages.filter(p => !p.data.private)) {
|
|
const newVersion = inc(pkg.data.version, bumpType || 'patch')
|
|
workspace.setVersion(pkg.data.name, `${newVersion}-${date}.${commit}`)
|
|
const newname = pkg.data.name === 'nuxt' ? 'nuxt3' : (pkg.data.name + '-edge')
|
|
workspace.rename(pkg.data.name, newname)
|
|
}
|
|
|
|
await workspace.save()
|
|
}
|
|
|
|
main().catch((err) => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|