Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"vue": "^3.4.35"
"vue": "^3.4.37"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.37",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"unplugin-vue-components": "^0.27.3",
"vite": "^5.0.0",
"vite-plugin-pages": "^0.32.3",
"vue": "^3.4.35",
"vue": "^3.4.37",
"vue-router": "^4.4.2",
"vue-virtual-scroller": "2.0.0-beta.8"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/vitest/src/create/browser/creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ async function generateWorkspaceFile(options: {
` },`,
`])`,
'',
].filter(c => c != null).join('\n')
].filter(c => typeof c === 'string').join('\n')
await writeFile(options.configPath, workspaceContent)
}

Expand Down Expand Up @@ -308,7 +308,7 @@ async function generateFrameworkConfigFile(options: {
` },`,
`})`,
'',
].join('\n')
].filter(t => typeof t === 'string').join('\n')
// this file is only generated if there is already NO root config which is an edge case
await writeFile(options.configPath, configContent)
}
Expand Down
Loading