File tree 6 files changed +143
-339
lines changed
vitest/src/create/browser
6 files changed +143
-339
lines changed Original file line number Diff line number Diff line change 15
15
},
16
16
"dependencies" : {
17
17
"@vueuse/core" : " ^10.11.0" ,
18
- "vue" : " ^3.4.35 "
18
+ "vue" : " ^3.4.37 "
19
19
},
20
20
"devDependencies" : {
21
21
"@iconify-json/carbon" : " ^1.1.37" ,
Original file line number Diff line number Diff line change 82
82
"unplugin-vue-components" : " ^0.27.3" ,
83
83
"vite" : " ^5.0.0" ,
84
84
"vite-plugin-pages" : " ^0.32.3" ,
85
- "vue" : " ^3.4.35 " ,
85
+ "vue" : " ^3.4.37 " ,
86
86
"vue-router" : " ^4.4.2" ,
87
87
"vue-virtual-scroller" : " 2.0.0-beta.8"
88
88
}
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ async function generateWorkspaceFile(options: {
277
277
` },` ,
278
278
`])` ,
279
279
'' ,
280
- ] . filter ( c => c != null ) . join ( '\n' )
280
+ ] . filter ( c => typeof c === 'string' ) . join ( '\n' )
281
281
await writeFile ( options . configPath , workspaceContent )
282
282
}
283
283
@@ -308,7 +308,7 @@ async function generateFrameworkConfigFile(options: {
308
308
` },` ,
309
309
`})` ,
310
310
'' ,
311
- ] . join ( '\n' )
311
+ ] . filter ( t => typeof t === 'string' ) . join ( '\n' )
312
312
// this file is only generated if there is already NO root config which is an edge case
313
313
await writeFile ( options . configPath , configContent )
314
314
}
You can’t perform that action at this time.
0 commit comments