mirror of
https://github.com/andrei0x309/clear-wallet.git
synced 2024-11-18 23:41:10 +00:00
30 lines
899 B
TypeScript
30 lines
899 B
TypeScript
import { execSync } from 'child_process';
|
|
import { readFileSync, writeFileSync } from 'fs';
|
|
import { resolve } from 'path';
|
|
|
|
async function main() {
|
|
// 1. Bump version in package.json
|
|
const packageJsonPath = resolve('./package.json');
|
|
const packageJson = JSON.parse(readFileSync(packageJsonPath, 'utf-8'));
|
|
const currentVersion = packageJson.version;
|
|
const newVersion = bumpVersion(currentVersion);
|
|
packageJson.version = newVersion;
|
|
writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));
|
|
|
|
// 3. Commit changes
|
|
execSync(`git add .`);
|
|
execSync(`git commit -m "clear-wallet@v${newVersion}"`);
|
|
|
|
// 4. Create and push tag
|
|
execSync(`git tag v${newVersion}`);
|
|
execSync(`git push --follow-tags`);
|
|
|
|
}
|
|
|
|
function bumpVersion(version: string): string {
|
|
const parts = version.split('.');
|
|
parts[2] = String(parseInt(parts[2]) + 1);
|
|
return parts.join('.');
|
|
}
|
|
|
|
main(); |