UNPKG

personae

Version:

This tool is used to generate a person either NPC or other Edit

12 lines 496 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const wizard_child_1 = require("./wizard-child"); const program = require("commander"); // program basics program .option("-o, --output <dir>", "output directory") .option("-m, --mother <file>", "mother *.per file") .option("-f, --father <file>", "father *.per file") .parse(process.argv); wizard_child_1.default(program.output, program.mother, program.father); //# sourceMappingURL=program-child.js.map