UNPKG

@sap/cli-core

Version:

Command-Line Interface (CLI) Core Module

11 lines (10 loc) 353 B
import cleanCommand from "./clean.command.js"; import initCommand from "./init.command/index.js"; import showCommand from "./show.command.js"; const cacheCommand = { type: "topCommand", command: "cache", description: "work with the local CLI cache", subCommands: [initCommand, cleanCommand, showCommand], }; export default cacheCommand;