anypoint-cli-v4
Version:
Display and interact with the Anypoint Platform from the command line.
22 lines (21 loc) • 835 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const core_1 = require("@oclif/core");
class MyHelpClass extends core_1.Help {
async showCommandHelp(command) {
command.description += `
For more information use the oficial documentation site: https://docs.mulesoft.com/anypoint-cli/latest/`;
super.showCommandHelp(command);
}
async showTopicHelp(topic) {
topic.description += `
For more information use the oficial documentation site: https://docs.mulesoft.com/anypoint-cli/latest/`;
super.showTopicHelp(topic);
}
async showRootHelp() {
this.config.pjson.description += `
For more information use the oficial documentation site: https://docs.mulesoft.com/anypoint-cli/latest/`;
super.showRootHelp();
}
}
exports.default = MyHelpClass;