Files
joplin/packages/tools/release-cli.ts
Laurent Cozic 848a2c986a Chore: Remove the need for yarn when bumping version number
Since "yarn version patch" also performs "yarn install" which is usually unnecessary
2025-12-03 11:56:04 +00:00

37 lines
1.1 KiB
TypeScript

import { execCommand } from '@joplin/utils';
import { rootDir, completeReleaseWithChangelog } from './tool-utils';
import { versionPatch } from '@joplin/utils/version';
const appDir = `${rootDir}/packages/app-cli`;
const changelogPath = `${rootDir}/readme/about/changelog/cli.md`;
// Start with node Tools/release-cli.js --changelog-from cli-v1.0.126
// to specify from where the changelog should be created
async function main() {
process.chdir(appDir);
await execCommand('git pull');
const newVersion = await versionPatch();
console.info(`Building ${newVersion}...`);
const newTag = `cli-${newVersion}`;
await execCommand('touch app/main.js');
await execCommand('yarn build');
await execCommand('cp ../../README.md build/');
process.chdir(`${appDir}/build`);
await execCommand('npm publish');
await completeReleaseWithChangelog(changelogPath, newVersion, newTag, 'CLI', false);
}
main().catch((error) => {
console.error('Fatal error');
console.error(error);
console.error('');
console.error('If the app cannot auto-detect the previous tag name, specify it using --changelog-from TAG_NAME');
process.exit(1);
});