mxdocgen
Version:
A small tool that mimics the documentation generation capabilities offered in Mendix Studio Pro, but with greater flexibility. It uses the Mendix Model SDK to extract information from a Mendix model, which is then fed into a set of templates to generate
20 lines • 878 B
JavaScript
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
exports.__esModule = true;
var fs = __importStar(require("fs"));
var yargs_1 = __importDefault(require("yargs"));
yargs_1["default"]
.commandDir("commands")
.demandCommand(1, "You need at least one command before moving on")
.config("config", function (configPath) { return JSON.parse(fs.readFileSync(configPath, "utf-8")); })
.showHelpOnFail(false, "Specify --help for available options").argv;
//# sourceMappingURL=cli.js.map
;