Bump welshman

This commit is contained in:
Jon Staab
2025-07-09 14:00:42 -07:00
parent 2460bbbc83
commit 5d02ae75dc
4 changed files with 16 additions and 14 deletions

View File

@@ -1,8 +1,10 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -e
# Fetch tags and set to env vars # Fetch tags and set to env vars
git fetch --prune --unshallow --tags git fetch --prune --unshallow --tags || true
git describe --tags --abbrev=0 git describe --tags --abbrev=0 || true
export VITE_BUILD_VERSION=$RENDER_GIT_COMMIT export VITE_BUILD_VERSION=$RENDER_GIT_COMMIT
export VITE_BUILD_HASH=$RENDER_GIT_COMMIT export VITE_BUILD_HASH=$RENDER_GIT_COMMIT

View File

@@ -55,17 +55,17 @@
"@types/qrcode": "^1.5.5", "@types/qrcode": "^1.5.5",
"@vite-pwa/assets-generator": "^0.2.6", "@vite-pwa/assets-generator": "^0.2.6",
"@vite-pwa/sveltekit": "^0.6.6", "@vite-pwa/sveltekit": "^0.6.6",
"@welshman/app": "^0.3.8", "@welshman/app": "^0.3.10",
"@welshman/content": "^0.3.8", "@welshman/content": "^0.3.10",
"@welshman/editor": "^0.3.8", "@welshman/editor": "^0.3.10",
"@welshman/feeds": "^0.3.8", "@welshman/feeds": "^0.3.10",
"@welshman/lib": "^0.3.8", "@welshman/lib": "^0.3.10",
"@welshman/net": "^0.3.8", "@welshman/net": "^0.3.10",
"@welshman/relay": "^0.3.8", "@welshman/relay": "^0.3.10",
"@welshman/router": "^0.3.8", "@welshman/router": "^0.3.10",
"@welshman/signer": "^0.3.8", "@welshman/signer": "^0.3.10",
"@welshman/store": "^0.3.8", "@welshman/store": "^0.3.10",
"@welshman/util": "^0.3.8", "@welshman/util": "^0.3.10",
"compressorjs": "^1.2.1", "compressorjs": "^1.2.1",
"daisyui": "^4.12.10", "daisyui": "^4.12.10",
"date-picker-svelte": "^2.13.0", "date-picker-svelte": "^2.13.0",

BIN
pnpm-lock.yaml generated

Binary file not shown.

View File

@@ -34,7 +34,7 @@ export const getWebPushInfo = async () => {
} }
if (!("PushManager" in window)) { if (!("PushManager" in window)) {
throw new Error("Push messaging not supported") throw new Error("Push notifications are not supported")
} }
if (Notification.permission === "denied") { if (Notification.permission === "denied") {