read(projectRoot: string): Task<MetafileCachePayload | null, never>
Reads the cached metafile. Returns null on miss or corruption.
import * as MetafileCache from './metafile-cache.ts'; await MetafileCache.read('/tmp/no-such-qunitx-project'); // null — missing or corrupt cache is a miss
Task<MetafileCachePayload | null, never>