We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cafdd8 commit 73acf6eCopy full SHA for 73acf6e
playgrounds/sandbox/run.js
@@ -56,7 +56,7 @@ for (const generate of /** @type {const} */ (['client', 'server'])) {
56
});
57
58
write(
59
- `${cwd}/output/${file}.json`,
+ `${cwd}/output/ast/${file}.json`,
60
JSON.stringify(
61
ast,
62
(key, value) => (typeof value === 'bigint' ? ['BigInt', value.toString()] : value),
@@ -66,7 +66,7 @@ for (const generate of /** @type {const} */ (['client', 'server'])) {
66
67
try {
68
const migrated = migrate(source);
69
- write(`${cwd}/output/${file}.migrated.svelte`, migrated.code);
+ write(`${cwd}/output/migrated/${file}`, migrated.code);
70
} catch (e) {
71
console.warn(`Error migrating ${file}`, e);
72
}
0 commit comments