( forceRuntimePrepare: boolean | undefined, runtime: SessionRuntimeHints | undefined, platform: CliFlags['platform'], )
| 236 | } |
| 237 | |
| 238 | function shouldPrepareRuntime( |
| 239 | forceRuntimePrepare: boolean | undefined, |
| 240 | runtime: SessionRuntimeHints | undefined, |
| 241 | platform: CliFlags['platform'], |
| 242 | ): boolean { |
| 243 | return ( |
| 244 | forceRuntimePrepare === true || !runtime || !isRuntimeCompatibleWithPlatform(runtime, platform) |
| 245 | ); |
| 246 | } |
| 247 | |
| 248 | async function persistMaterializedConnection(options: { |
| 249 | changed: boolean; |
no test coverage detected
searching dependent graphs…