INNER CODE UNIT · JavaScript
function
echobind/bisonapp · packages/create-bison-app/cli.js:83
function (yargs) {
yargs.positional("name", {
describe: "Creates a new Bison app with the specified name",
type: "string",
});
const options = generateQuestions();
options.forEach((option) => {
yargs.option(option.name, {
describe: option.description,
type: convertInquirerTypeToYarnType(option.type),
});
});
},
async function (yargs) {
// Show the logo!
console.log(Logo);