-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
corepack cache
command (#363)
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import {Command} from 'clipanion'; | ||
import fs from 'fs'; | ||
|
||
import {getInstallFolder} from '../folderUtils'; | ||
import type {Context} from '../main'; | ||
|
||
export class CacheCommand extends Command<Context> { | ||
static paths = [ | ||
[`cache`, `clean`], | ||
[`cache`, `clear`], | ||
]; | ||
|
||
static usage = Command.Usage({ | ||
description: `Cleans Corepack cache`, | ||
details: ` | ||
Removes Corepack cache directory from your local disk. | ||
`, | ||
}); | ||
|
||
async execute() { | ||
await fs.promises.rm(getInstallFolder(), {recursive: true, force: true}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters