We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
npx sv migrate app-state
Run it in the web directory of https://github.com/immich-app/immich and it won't migrate anything. Some stuff was already migrated in immich-app/immich#14807, but it only got 9 out of 22 occurrences of $app/stores
web
$app/stores
The text was updated successfully, but these errors were encountered:
Here is a failing test (note the word page in an unrelated import). I tried fixing the bug but failed.
page
test('Updates $app/store #4', () => { const result = transform_svelte_code( `<script> import { page } from '$app/stores'; import Comp from '$lib/page/Comp.svelte' </script> <div>{$page.url}</div> <button onclick={() => { console.log($page.state); }}></button> ` ); assert.equal( result, `<script> import { page } from '$app/state'; import Comp from '$lib/page/Comp.svelte' </script> <div>{page.url}</div> <button onclick={() => { console.log(page.state); }}></button> ` ); });
FYI @dummdidumm
Sorry, something went wrong.
No branches or pull requests
Run it in the
web
directory of https://github.com/immich-app/immich and it won't migrate anything. Some stuff was already migrated in immich-app/immich#14807, but it only got 9 out of 22 occurrences of$app/stores
The text was updated successfully, but these errors were encountered: