(entryPath: string)
| 135 | } |
| 136 | |
| 137 | function createTmpPath(entryPath: string): string { |
| 138 | const suffix = `${process.pid}.${Date.now()}.${Math.random().toString(16).slice(2)}`; |
| 139 | return `${entryPath}.tmp.${suffix}`; |
| 140 | } |
| 141 | |
| 142 | function writeEntryFile(entry: RegistryEntry): void { |
| 143 | ensureRegistryReady(); |