92 lines
2.5 KiB
TypeScript
92 lines
2.5 KiB
TypeScript
import {
|
|
determineSemverChange,
|
|
loadChangelogConfig,
|
|
parseCommits,
|
|
generateMarkDown,
|
|
parseChangelogMarkdown,
|
|
} from 'changelogen';
|
|
import { execa } from 'execa';
|
|
import { getPkgTag, grabPackageDetails, listCommitsInDir } from './git';
|
|
import { consola } from 'consola';
|
|
import fs from 'fs-extra';
|
|
|
|
const pkg = process.argv[2];
|
|
if (pkg == null) {
|
|
throw Error(
|
|
'Package name missing. Usage: tsx bump-package-version.ts <package-name>',
|
|
);
|
|
}
|
|
const { pkgDir, pkgName, currentVersion, prevTag, changelogPath, pkgJsonPath } =
|
|
await grabPackageDetails(pkg);
|
|
consola.info('Bumping:', { pkg, pkgDir, pkgName, currentVersion });
|
|
|
|
// Get commits
|
|
const config = await loadChangelogConfig(process.cwd());
|
|
consola.info('Config:', config);
|
|
const rawCommits = await listCommitsInDir(pkgDir, prevTag);
|
|
const commits = parseCommits(rawCommits, config);
|
|
|
|
// Bump version
|
|
let bumpType = determineSemverChange(commits, config) ?? 'patch';
|
|
if (currentVersion.startsWith('0.')) {
|
|
if (bumpType === 'major') {
|
|
bumpType = 'minor';
|
|
} else if (bumpType === 'minor') {
|
|
bumpType = 'patch';
|
|
}
|
|
}
|
|
await execa('pnpm', ['version', bumpType], {
|
|
cwd: pkgDir,
|
|
});
|
|
const updatedPkgJson = await fs.readJson(pkgJsonPath);
|
|
const newVersion: string = updatedPkgJson.version;
|
|
const newTag = getPkgTag(pkg, newVersion);
|
|
consola.info('Bump:', { currentVersion, bumpType, newVersion });
|
|
|
|
// Generate changelog
|
|
const versionChangelog = await generateMarkDown(commits, {
|
|
...config,
|
|
from: prevTag,
|
|
to: newTag,
|
|
});
|
|
let versionChangelogBody = versionChangelog
|
|
.split('\n')
|
|
.slice(1)
|
|
.join('\n')
|
|
.trim();
|
|
if (bumpType === 'major') {
|
|
versionChangelogBody = versionChangelogBody.replace(
|
|
'[compare changes]',
|
|
`[⚠️ breaking changes](https://wxt.dev/guide/upgrade-guide/wxt) • [compare changes]`,
|
|
);
|
|
}
|
|
const { releases: prevReleases } = await fs
|
|
.readFile(changelogPath, 'utf8')
|
|
.then(parseChangelogMarkdown)
|
|
.catch(() => ({ releases: [] }));
|
|
const allReleases = [
|
|
{
|
|
version: newVersion,
|
|
body: versionChangelogBody,
|
|
},
|
|
...prevReleases,
|
|
];
|
|
|
|
const newChangelog =
|
|
'# Changelog\n\n' +
|
|
allReleases
|
|
.map((release) => [`## v${release.version}`, release.body].join('\n\n'))
|
|
.join('\n\n');
|
|
await fs.writeFile(changelogPath, newChangelog, 'utf8');
|
|
consola.success('Updated changelog');
|
|
|
|
// Commit changes
|
|
await execa('git', ['add', pkgJsonPath, changelogPath]);
|
|
await execa('git', [
|
|
'commit',
|
|
'-m',
|
|
`chore(release): ${pkgName} v${newVersion}`,
|
|
]);
|
|
await execa('git', ['tag', newTag]);
|
|
consola.success('Committed version and changelog');
|