update dependencies

This commit is contained in:
Ruidy 2024-12-20 11:43:59 +01:00
parent b7aca38912
commit 29db641392
No known key found for this signature in database
GPG key ID: E00F51288CB857CC
4 changed files with 8 additions and 9 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -14,15 +14,13 @@
<kbd <kbd
class="hidden md:inline-block kbd kbd-sm" class="hidden md:inline-block kbd kbd-sm"
:class="{ 'opacity-50': !isFocused }" :class="{ 'opacity-50': !isFocused }"
></kbd
> >
</kbd>
<kbd <kbd
class="hidden md:inline-block kbd kbd-sm" class="hidden md:inline-block kbd kbd-sm"
:class="{ 'opacity-50': !isFocused }" :class="{ 'opacity-50': !isFocused }"
>K</kbd
> >
K
</kbd>
</label> </label>
</template> </template>

View file

@ -15,6 +15,7 @@ const shareRecipe = async (recipe: Recipe) => {
url, url,
}); });
} catch (error) { } catch (error) {
console.error(error);
alert("Failed to share the recipe."); alert("Failed to share the recipe.");
} }
} else { } else {

View file

@ -13,7 +13,7 @@
"lint:fix": "eslint . --fix" "lint:fix": "eslint . --fix"
}, },
"dependencies": { "dependencies": {
"@nuxt/eslint": "^0.3.10", "@nuxt/eslint": "^0.7.4",
"@nuxt/image": "^1.6.0", "@nuxt/image": "^1.6.0",
"@nuxtjs/robots": "5.0.1", "@nuxtjs/robots": "5.0.1",
"@trpc/client": "^10.45.2", "@trpc/client": "^10.45.2",
@ -29,11 +29,11 @@
"devDependencies": { "devDependencies": {
"@tailwindcss/typography": "^0.5.13", "@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.19", "autoprefixer": "^10.4.19",
"daisyui": "^4.10.2", "daisyui": "^4.12.23",
"nuxt-delay-hydration": "^1.3.8", "nuxt-delay-hydration": "^1.3.8",
"postcss": "^8.4.38", "postcss": "^8.4.38",
"prettier": "3.2.5", "prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.5.14", "prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.3" "tailwindcss": "^3.4.17"
} }
} }