@pnp/generator-spfx
Version:
This Yeoman generator helps organisations to improve their development workflow with the SharePoint Framework. It extends the functionalities of the @microsoft/generator-sharepoint based on best pattern and practices. This generator extends the capabiliti
26 lines (21 loc) • 484 B
JavaScript
// These are just sample selection of options
const options = [{
name: 'Jest',
value: 'jest'
}
];
const configOptions = [
// Sample content of questions
{
type: 'checkbox',
message: 'Test Framework',
name: 'testframework',
choices: options,
when: answers => {
return answers.framework && answers.framework === 'none.plus'
}
}
// , addon
]
module.exports = configOptions;