(cachePath: string)
| 219 | } |
| 220 | |
| 221 | private ensureCacheDir(cachePath: string): void { |
| 222 | const dir = path.dirname(cachePath); |
| 223 | if (!this.fs.existsSync(dir)) { |
| 224 | this.fs.mkdirSync(dir, { recursive: true }); |
| 225 | } |
| 226 | } |
| 227 | } |
no test coverage detected