* Read the composite deps marker. Returns the parsed JSON object * or null if the file is missing / corrupt.
()
| 218 | * or null if the file is missing / corrupt. |
| 219 | */ |
| 220 | function readMarker() { |
| 221 | try { |
| 222 | return JSON.parse(readFileSync(DEPS_MARKER, 'utf8')); |
| 223 | } catch { |
| 224 | return null; |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Ensure the virtual environment exists and dependencies are installed. |
no outgoing calls
no test coverage detected