1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/tools/release-plugin-repo-cli.ts
2021-12-21 12:38:05 +01:00

31 lines
766 B
TypeScript

import { chdir } from 'process';
import { rootDir, gitPullTry, execCommand2, releaseFinalGitCommands } from './tool-utils';
const workDir = `${rootDir}/packages/plugin-repo-cli`;
async function main() {
await gitPullTry();
chdir(rootDir);
await execCommand2('yarn run tsc');
chdir(workDir);
await execCommand2('yarn run dist');
const newVersion = (await execCommand2('npm version patch')).trim();
console.info(`New version: ${newVersion}`);
const tagName = `plugin-repo-cli-${newVersion}`;
console.info(`Tag name: ${tagName}`);
await execCommand2('npm publish');
console.info(releaseFinalGitCommands('Plugin Repo CLI', newVersion, tagName));
}
main().catch((error) => {
console.error('Fatal error');
console.error(error);
process.exit(1);
});