mirror of https://github.com/sveltejs/svelte
parent
9412c5861c
commit
cfd6446635
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: exclude derived writes from effect abort and rescheduling
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
const der = $derived(false);
|
||||||
|
|
||||||
|
$effect(() => {
|
||||||
|
der
|
||||||
|
});
|
||||||
|
</script>
|
@ -0,0 +1,5 @@
|
|||||||
|
import { test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
async test() {}
|
||||||
|
});
|
@ -0,0 +1,8 @@
|
|||||||
|
<script>
|
||||||
|
import Component from './Component.svelte'
|
||||||
|
const arr = Array.from({length: 10001});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#each arr}
|
||||||
|
<Component />
|
||||||
|
{/each}
|
Loading…
Reference in new issue