create-hokage-js-app
Version:
🔥 Best CLI tool to create a MERN stack template. Quick, clean, and customizable.
30 lines (28 loc) • 753 B
JavaScript
import { select } from '@inquirer/prompts';
export async function selectStyleTemplate() {
return select({
message: '✨ Which styling setup do you want to use for your project?',
choices: [
{
name: 'Plain CSS',
value: 'css',
description: 'Basic styling using .css files',
},
{
name: 'SCSS / SASS',
value: 'scss',
description: 'Use SCSS syntax for stylesheets',
},
{
name: 'Tailwind CSS',
value: 'tailwindcss',
description: 'Utility-first styling with Tailwind',
},
{
name: 'shadcn/ui (with Tailwind)',
value: 'shadcn-ui',
description: 'Tailwind + prebuilt accessible components',
},
],
});
}