()
| 230 | return join(homedir(), ".hyperframes"); |
| 231 | } |
| 232 | function statePath(): string { |
| 233 | return join(stateDir(), "cloudrun-state.json"); |
| 234 | } |
| 235 | function writeState(state: StackState): void { |
| 236 | mkdirSync(stateDir(), { recursive: true }); |
| 237 | writeFileSync(statePath(), JSON.stringify(state, null, 2)); |
no test coverage detected