(command)
| 12 | // A script to handle versioning and ensure all related changes are in a single, atomic commit. |
| 13 | |
| 14 | function run(command) { |
| 15 | console.log(`> ${command}`); |
| 16 | execSync(command, { stdio: 'inherit' }); |
| 17 | } |
| 18 | |
| 19 | function readJson(filePath) { |
| 20 | return JSON.parse(readFileSync(filePath, 'utf-8')); |