1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-09 08:45:55 +02:00
joplin/packages/tools/release-cli.ts

34 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-01-24 23:56:59 +02:00
import { execCommand2, rootDir, completeReleaseWithChangelog } from './tool-utils';
const appDir = `${rootDir}/packages/app-cli`;
const changelogPath = `${rootDir}/readme/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);
2021-01-24 23:56:59 +02:00
const newVersion = (await execCommand2('npm version patch')).trim();
console.info(`Building ${newVersion}...`);
const newTag = `cli-${newVersion}`;
2021-01-24 23:56:59 +02:00
await execCommand2('git pull');
await execCommand2('touch app/main.js');
await execCommand2('npm run build');
await execCommand2('cp ../../README.md build/');
process.chdir(`${appDir}/build`);
2021-01-24 23:56:59 +02:00
await execCommand2('npm publish');
2021-05-14 17:17:02 +02:00
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);
});