Bump welshman

This commit is contained in:
Jon Staab
2025-10-01 17:03:25 -07:00
parent b4058389ec
commit 04155f5b23
4 changed files with 14 additions and 15 deletions

View File

@@ -59,17 +59,17 @@
"@types/throttle-debounce": "^5.0.2",
"@vite-pwa/assets-generator": "^0.2.6",
"@vite-pwa/sveltekit": "^0.6.6",
"@welshman/app": "^0.5.0",
"@welshman/content": "^0.5.0",
"@welshman/editor": "^0.5.0",
"@welshman/feeds": "^0.5.0",
"@welshman/lib": "^0.5.0",
"@welshman/net": "^0.5.0",
"@welshman/relay": "^0.5.0",
"@welshman/router": "^0.5.0",
"@welshman/signer": "^0.5.0",
"@welshman/store": "^0.5.0",
"@welshman/util": "^0.5.0",
"@welshman/app": "^0.5.1",
"@welshman/content": "^0.5.1",
"@welshman/editor": "^0.5.1",
"@welshman/feeds": "^0.5.1",
"@welshman/lib": "^0.5.1",
"@welshman/net": "^0.5.1",
"@welshman/relay": "^0.5.1",
"@welshman/router": "^0.5.1",
"@welshman/signer": "^0.5.1",
"@welshman/store": "^0.5.1",
"@welshman/util": "^0.5.1",
"compressorjs": "^1.2.1",
"daisyui": "^4.12.10",
"date-picker-svelte": "^2.13.0",

BIN
pnpm-lock.yaml generated

Binary file not shown.

View File

@@ -46,8 +46,7 @@
{#if showFailure}
{@const url = failedUrls[0]}
{@const status = $thunk.status[url]}
{@const message = $thunk.details[url]}
{@const {status, detail: message} = $thunk.results[url]}
<button
class="flex w-full justify-end px-1 text-xs {restProps.class}"
onclick={stopPropagation(noop)}>

View File

@@ -168,7 +168,7 @@ export const broadcastUserData = async (relays: string[]) => {
for (const event of events) {
if (isSignedEvent(event)) {
await publishThunk({event, relays}).result
await publishThunk({event, relays}).complete
}
}
}
@@ -804,5 +804,5 @@ export const updateProfile = async ({
const event = makeEvent(template.kind, template)
const relays = router.merge(scenarios).getUrls()
await publishThunk({event, relays}).result
await publishThunk({event, relays}).complete
}