shipthis
Version:
ShipThis manages building and uploading your Godot games to the App Store and Google Play.
15 lines (12 loc) • 406 B
JavaScript
import { Help } from '@oclif/core';
class CustomHelp extends Help {
// formatCommand is protected, so we need to override it to make it public
exposedFormatCommand(command) {
return super.formatCommand(command);
}
formatTopics(topics) {
const publicTopics = topics.filter((t) => t.name !== "internal");
return super.formatTopics(publicTopics);
}
}
export { CustomHelp as default };