We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c23967 commit 43bdcc7Copy full SHA for 43bdcc7
packages/migrate/migrations/svelte-5/index.js
@@ -140,7 +140,7 @@ export async function migrate() {
140
.concat([
141
{
142
title: 'custom (overrides selection, allows to specify sub folders)',
143
- value: ',',
+ value: ',', // a value that definitely isn't a valid folder name so it cannot clash
144
selected: false
145
}
146
])
@@ -154,7 +154,7 @@ export async function migrate() {
154
const custom = await prompts({
155
type: 'list',
156
name: 'value',
157
- message: 'Specify folders (comma separated)'
+ message: 'Specify folder paths (comma separated)'
158
});
159
160
if (!custom.value) {
0 commit comments