MCPcopy Index your code
hub / github.com/angular/angular-cli / rimraf

Function rimraf

tests/e2e/utils/fs.ts:16–22  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

14}
15
16export function rimraf(path: string): Promise<void> {
17 return fs.rm(path, {
18 force: true,
19 recursive: true,
20 maxRetries: 3,
21 });
22}
23
24export function moveFile(from: string, to: string): Promise<void> {
25 return fs.rename(from, to);

Calls

no outgoing calls

Tested by

no test coverage detected