(path: string)
| 382 | } |
| 383 | |
| 384 | async removeTree(path: string): Promise<void> { |
| 385 | await this.fs.rm(path, { recursive: true, force: true }); |
| 386 | } |
| 387 | |
| 388 | async copyTree(src: string, dest: string): Promise<void> { |
| 389 | await this.fs.cp(src, dest, { recursive: true }); |