(target: string)
| 46 | } |
| 47 | |
| 48 | const statePath = (target: string) => join(devDir, `${target}.json`); |
| 49 | const readState = (target: string): InstanceState | undefined => { |
| 50 | try { |
| 51 | return JSON.parse(readFileSync(statePath(target), "utf8")) as InstanceState; |
no outgoing calls
no test coverage detected