feat: add optional zustand

This commit is contained in:
2025-07-01 22:05:23 -04:00
parent 7df85b7654
commit c7b3e75085
4 changed files with 42 additions and 4 deletions

View File

@@ -9,7 +9,12 @@ async function askProjectDetails() {
message: 'Choose a UI framework:',
choices: ['Ant Design', 'Material UI', 'Chakra UI', 'Radix UI', 'None'],
},
{ type: 'confirm', name: 'useRedux', message: 'Use Redux?' },
{
type: 'list',
name: 'stateLibrary',
message: 'Choose state management library:',
choices: ['Redux Toolkit', 'Zustand', 'None'],
},
{ type: 'confirm', name: 'useModuleFederation', message: 'Use Module Federation Plugin?' },
{ type: 'list', name: 'language', message: 'Choose language:', choices: ['JavaScript', 'TypeScript'] },