Update to new version of welshman, including new thunks and wrap manager

This commit is contained in:
Jon Staab
2025-10-17 10:19:21 -07:00
parent e0099141aa
commit 6ca74c21bf
21 changed files with 205 additions and 315 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
<script lang="ts">
import {MergedThunk, thunkIsComplete, getFailedThunkUrls} from "@welshman/app"
import type {Thunk} from "@welshman/app"
import type {AbstractThunk} from "@welshman/app"
import {thunkIsComplete, getFailedThunkUrls} from "@welshman/app"
import ThunkFailure from "@app/components/ThunkFailure.svelte"
import ThunkPending from "@app/components/ThunkPending.svelte"
interface Props {
thunk: Thunk | MergedThunk
thunk: AbstractThunk
class?: string
}