DenReg/cli/commands/deprecate.ts
Fabian Stamm d56f0bcbea
All checks were successful
continuous-integration/drone/push Build is passing
Add deprecate command to CLI
2020-08-02 23:37:59 +02:00

21 lines
497 B
TypeScript

import { Colors, Cliffy } from "../deps.ts";
import { getMeta, setMeta, log } from "../global.ts";
export default async function deprecate(options: any) {
const meta = await getMeta();
const res = await Cliffy.Confirm.prompt(
"Are you shure you want to deprecat this package?"
);
if (res) {
meta.deprecated = true;
console.log(Colors.yellow("Package marked as deprecated!"));
} else {
console.log("Deprecation canceled");
}
await setMeta(meta);
}