Skip to content

Commit 6fd1c20

Browse files
committed
feat(cli): add router and css options to init command
Add new options for router and css framework selection in the init command. Update features list to include i18n and mcp
1 parent 7121270 commit 6fd1c20

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

packages/cli/src/commands/init.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,15 @@ export const init = defineCommand({
1616
},
1717
features: {
1818
type: 'string',
19-
description: 'The features to install (router, pinia, eslint)',
19+
description: 'The features to install (pinia, eslint, i18n, mcp)',
20+
},
21+
router: {
22+
type: 'string',
23+
description: 'The router to install (router, file-router, none)',
24+
},
25+
css: {
26+
type: 'string',
27+
description: 'The CSS framework to use (unocss, tailwindcss, none)',
2028
},
2129
typescript: {
2230
type: 'boolean',
@@ -37,10 +45,6 @@ export const init = defineCommand({
3745
description: 'The Vuetify version to use (vuetify, vuetify0)',
3846
default: 'vuetify',
3947
},
40-
css: {
41-
type: 'string',
42-
description: 'The CSS framework to use (unocss, tailwindcss, none)',
43-
},
4448
platform: {
4549
type: 'string',
4650
description: 'The framework to use (vue, nuxt)',

0 commit comments

Comments
 (0)