-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
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
chore: update links to preview site #14001
Conversation
🦋 Changeset detectedLatest commit: 4e64a22 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
commit: |
this was the example used for <script>
import { untrack } from 'svelte';
let { a, b } = $props();
$effect(() => {
// this will run when `a` changes,
// but not when `b` changes
console.log(a);
console.log(untrack(() => b));
});
</script> from wayback machine: https://web.archive.org/web/20240922152341/https://svelte-5-preview.vercel.app/docs/imports screenshot: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This affects published types and compiler errors, so should have a changeset and be a 'fix' or maybe a 'chore'.
closes #13982
I just deleted the link for
untrack
because I couldn't find someplace new to point it. It seems we don't have an example of using it. Perhaps someone can add an example inline later or something