feat(cli): async update checking

This commit is contained in:
saberzero1
2026-03-31 19:22:17 +02:00
parent 04912ac2e5
commit 3012aa01ea
3 changed files with 252 additions and 81 deletions
-27
View File
@@ -117,30 +117,3 @@ export const BuildArgv = {
describe: "how many threads to use to parse notes",
},
}
export const PluginInstallArgv = {
...CommonArgv,
_: {
type: "string",
demandOption: true,
describe: "package names to install",
},
}
export const PluginUninstallArgv = {
...CommonArgv,
_: {
type: "string",
demandOption: true,
describe: "package names to uninstall",
},
}
export const PluginSearchArgv = {
...CommonArgv,
query: {
string: true,
alias: ["q"],
describe: "search query for plugins",
},
}