10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
import { log } from "../helpers/shell.ts";
|
|
import { enableEnvLocalFiles } from "../helpers/env-files.ts";
|
|
|
|
export function cmdEnable(): void {
|
|
const { moved, missing, alreadyEnabled } = enableEnvLocalFiles();
|
|
log(
|
|
`enable: ${moved} restored, ${alreadyEnabled} already enabled, ${missing} not present`,
|
|
);
|
|
}
|