()
| 6 | const { bumpVersions } = require('./bump-version'); |
| 7 | |
| 8 | function createTempDir(): string { |
| 9 | return fs.mkdtempSync(path.join(os.tmpdir(), 'bump-version-test-')); |
| 10 | } |
| 11 | |
| 12 | function writePackageJson(dir: string, content: Record<string, unknown>): void { |
| 13 | fs.mkdirSync(dir, { recursive: true }); |
no outgoing calls
no test coverage detected