@@ -83,7 +83,6 @@ async function init() {
8383 // --playwright
8484 // --eslint
8585 // --eslint-with-prettier (only support prettier through eslint for simplicity)
86- // --vue-devtools / --devtools
8786 // --force (for force overwriting)
8887
8988 const args = process . argv . slice ( 2 )
@@ -96,8 +95,6 @@ async function init() {
9695 tests : { type : 'boolean' } ,
9796 'vue-router' : { type : 'boolean' } ,
9897 router : { type : 'boolean' } ,
99- 'vue-devtools' : { type : 'boolean' } ,
100- devtools : { type : 'boolean' } ,
10198 } as const
10299
103100 const { values : argv , positionals } = parseArgs ( {
@@ -120,8 +117,7 @@ async function init() {
120117 argv . nightwatch ??
121118 argv . playwright ??
122119 argv . eslint ??
123- argv [ 'eslint-with-prettier' ] ??
124- ( argv . devtools || argv [ 'vue-devtools' ] )
120+ argv [ 'eslint-with-prettier' ]
125121 ) === 'boolean'
126122
127123 let targetDir = positionals [ 0 ]
@@ -144,7 +140,6 @@ async function init() {
144140 needsEslint ? : false | 'eslintOnly' | 'speedUpWithOxlint'
145141 needsOxlint ? : boolean
146142 needsPrettier ? : boolean
147- needsDevTools ? : boolean
148143 } = { }
149144
150145 try {
@@ -161,7 +156,6 @@ async function init() {
161156 // - Add Playwright for end-to-end testing?
162157 // - Add ESLint for code quality?
163158 // - Add Prettier for code formatting?
164- // - Add Vue DevTools 7 extension for debugging? (experimental)
165159 result = await prompts (
166160 [
167161 {
@@ -306,14 +300,6 @@ async function init() {
306300 active : language . defaultToggleOptions . active ,
307301 inactive : language . defaultToggleOptions . inactive ,
308302 } ,
309- {
310- name : 'needsDevTools' ,
311- type : ( ) => ( isFeatureFlagsUsed ? null : 'toggle' ) ,
312- message : language . needsDevTools . message ,
313- initial : false ,
314- active : language . defaultToggleOptions . active ,
315- inactive : language . defaultToggleOptions . inactive ,
316- } ,
317303 ] ,
318304 {
319305 onCancel : ( ) => {
@@ -338,7 +324,6 @@ async function init() {
338324 needsPinia = argv . pinia ,
339325 needsVitest = argv . vitest || argv . tests ,
340326 needsPrettier = argv [ 'eslint-with-prettier' ] ,
341- needsDevTools = argv . devtools || argv [ 'vue-devtools' ] ,
342327 } = result
343328
344329 const needsEslint = Boolean ( argv . eslint || argv [ 'eslint-with-prettier' ] || result . needsEslint )
@@ -488,9 +473,6 @@ async function init() {
488473 render ( 'config/prettier' )
489474 }
490475
491- if ( needsDevTools ) {
492- render ( 'config/devtools' )
493- }
494476 // Render code template.
495477 // prettier-ignore
496478 const codeTemplate =
0 commit comments