(path: string, patch: MetaOverride)
| 189 | } |
| 190 | const meta = new Map<string, MetaOverride>(); |
| 191 | const updateMeta = (path: string, patch: MetaOverride): void => { |
| 192 | meta.set(path, { ...meta.get(path), ...patch }); |
| 193 | }; |
| 194 | |
| 195 | // Buffer-backed file content store. Sidesteps platformatic VFS's |
| 196 | // whole-file readFileSync/writeFileSync cycle, which is O(N²) for |