import { execSync } from 'child_process' import { readJSONSync } from 'fs-extra' const { version: oldVersion } = readJSONSync('package.json') // execSync('bumpp --no-commit --no-tag --no-push', { stdio: 'inherit' }) const { version } = readJSONSync('package.json') if (oldVersion === version) { console.log('canceled') process.exit() } // execSync('npm run update', { stdio: 'inherit' }) // execSync('npm run changelog', { stdio: 'inherit' }) // execSync('git add .', { stdio: 'inherit' }) // execSync(`git commit -m "chore: release v${version}"`, { stdio: 'inherit' }) // execSync(`git tag -a v${version} -m "v${version}"`, { stdio: 'inherit' })