From 5efb3640674a058e5b80e49eafdf1756e7946571 Mon Sep 17 00:00:00 2001 From: prototypa Date: Sun, 16 Oct 2022 00:00:34 +0200 Subject: [PATCH] Update dependencies --- astro.config.mjs | 4 +++- package.json | 15 ++++++++------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 55e7487..5df316d 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -30,7 +30,9 @@ export default defineConfig({ }, }), sitemap(), - image(), + image({ + serviceEntryPoint: '@astrojs/image/sharp' + }), mdx(), /* Disable this integration if you don't use Google Analytics (or other external script). */ diff --git a/package.json b/package.json index 433ade1..305da98 100644 --- a/package.json +++ b/package.json @@ -14,19 +14,19 @@ "subfont": "subfont -ir --no-fallbacks --silent --root dist" }, "devDependencies": { - "@astrojs/image": "^0.7.0", + "@astrojs/image": "^0.10.0", "@astrojs/mdx": "^0.11.4", - "@astrojs/partytown": "^1.0.0", - "@astrojs/rss": "^1.0.0", + "@astrojs/partytown": "^1.0.1", + "@astrojs/rss": "^1.0.2", "@astrojs/sitemap": "^1.0.0", - "@astrojs/tailwind": "^1.0.0", + "@astrojs/tailwind": "^2.1.0", "@astrolib/analytics": "^0.2.4", "@astrolib/seo": "^0.2.1", "@fontsource/inter": "^4.5.12", "@tailwindcss/typography": "^0.5.7", "@typescript-eslint/eslint-plugin": "^5.36.2", "@typescript-eslint/parser": "^5.36.2", - "astro": "^1.2.1", + "astro": "^1.5.0", "astro-icon": "^0.7.3", "eslint": "^8.23.0", "eslint-plugin-astro": "^0.19.0", @@ -36,11 +36,12 @@ "prettier": "^2.7.1", "prettier-plugin-astro": "^0.5.4", "reading-time": "^1.5.0", + "sharp": "^0.31.1", "subfont": "^6.12.0", + "tailwindcss": "^3.1.8", "typescript": "^4.8.3" }, "engines": { "node": "^14.15.0 || >=16.0.0" - }, - "dependencies": {} + } }