@digipolis/start-ui
Version:
25 lines (23 loc) • 549 B
JavaScript
import brandings from '../../../config/brandings.config.js';
import { mapBranding } from '../../../utils/branding.js';
export default [
{
type: 'list',
name: 'branding',
message: 'Which branding do you want to use?',
choices: Object.keys(brandings),
filter: mapBranding,
},
{
type: 'confirm',
name: 'flexboxgrid',
message: 'Do you want to use the Flexbox grid?',
default: true,
},
{
type: 'confirm',
name: 'routing',
message: 'Do you want to add basic routing?',
default: true,
},
];