@sap/cli-core
Version:
Command-Line Interface (CLI) Core Module
16 lines (15 loc) • 665 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const clean_command_1 = __importDefault(require("./clean.command"));
const init_command_1 = __importDefault(require("./init.command"));
const show_command_1 = __importDefault(require("./show.command"));
const cacheCommand = {
type: "topCommand",
command: "cache",
description: "work with the local CLI cache",
subCommands: [init_command_1.default, clean_command_1.default, show_command_1.default],
};
exports.default = cacheCommand;