| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #!/usr/bin/env node
- /**
- * Bump the launcher workspace root and packages/* to one version, refresh the
- * repository lockfile, and verify. Usage: `pnpm release:bump <major|minor|patch|x.y.z>`.
- */
- import fs from 'node:fs';
- import path from 'node:path';
- import { spawnSync } from 'node:child_process';
- import { packageDirs, readJson, root } from './repo.mjs';
- const bump = process.argv[2];
- const releaseTypes = new Set(['major', 'minor', 'patch']);
- const repositoryRoot = path.resolve(root, '../..');
- function writeJson(file, value) {
- fs.writeFileSync(file, `${JSON.stringify(value, null, 2)}\n`);
- }
- function run(command, args, cwd = root) {
- const result = spawnSync(command, args, {
- cwd,
- stdio: 'inherit',
- env: { ...process.env, CI: 'true' },
- });
- if (result.error) throw result.error;
- if (result.status !== 0) {
- process.exit(result.status ?? 1);
- }
- }
- function packageFiles() {
- return ['package.json', ...packageDirs().map((dir) => path.join(dir, 'package.json'))];
- }
- function parseVersion(version) {
- const match = /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/.exec(version);
- if (!match) {
- throw new Error(`increment types need a plain x.y.z current version (current: ${version}) — pass an explicit target version instead`);
- }
- return match.slice(1).map((part) => Number(part));
- }
- /** Explicit target versions accept full semver, prereleases included (test publishes). */
- const EXPLICIT_VERSION = /^\d+\.\d+\.\d+(-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?$/;
- function nextVersion(current, release) {
- if (EXPLICIT_VERSION.test(release)) return release;
- if (!releaseTypes.has(release)) {
- throw new Error('Usage: pnpm release:bump <major|minor|patch|x.y.z>');
- }
- const [major, minor, patch] = parseVersion(current);
- if (release === 'major') return `${major + 1}.0.0`;
- if (release === 'minor') return `${major}.${minor + 1}.0`;
- return `${major}.${minor}.${patch + 1}`;
- }
- function currentPublishedVersion(files) {
- const versions = new Set(
- files
- .filter((file) => file.startsWith('packages/'))
- .map((file) => readJson(path.join(root, file)).version),
- );
- if (versions.size !== 1) {
- throw new Error(`published package versions differ: ${[...versions].join(', ')}`);
- }
- return [...versions][0];
- }
- if (!bump) {
- console.error('Usage: pnpm release:bump <major|minor|patch|x.y.z>');
- process.exit(1);
- }
- const files = packageFiles();
- const targetVersion = nextVersion(currentPublishedVersion(files), bump);
- for (const file of files) {
- const fullPath = path.join(root, file);
- const json = readJson(fullPath);
- json.version = targetVersion;
- writeJson(fullPath, json);
- console.log(`${file}: ${targetVersion}`);
- }
- run('pnpm', ['install', '--ignore-scripts', '--lockfile-only'], repositoryRoot);
- run('node', ['./scripts/verify-release.mjs']);
- console.log(`Release version bumped to ${targetVersion}`);
|