Skip to content

Commit 0255c0e

Browse files
committed
Merge branch 'ep2025' into ep2025-prague
2 parents b37ff01 + b05dd26 commit 0255c0e

File tree

11 files changed

+2637
-3675
lines changed

11 files changed

+2637
-3675
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ updates:
33
- package-ecosystem: "npm"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
6+
interval: "monthly"
7+
groups:
8+
react-dependencies:
9+
patterns:
10+
- "react"
11+
- "react-dom"
12+
- "@types/react"
713

814
- package-ecosystem: "github-actions"
915
directory: "/"
1016
schedule:
11-
interval: "weekly"
17+
interval: "monthly"

astro.config.mjs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import path, { dirname } from "path";
2-
import { fileURLToPath } from "url";
1+
import path from "path";
32
import { defineConfig } from "astro/config";
43
import mdx from "@astrojs/mdx";
5-
import { h } from "hastscript";
64
import sitemap from "@astrojs/sitemap";
75
import react from "@astrojs/react";
86
import tailwind from "@astrojs/tailwind";
@@ -13,9 +11,6 @@ import metaTags from "astro-meta-tags";
1311
import pagefind from "astro-pagefind";
1412
import deleteUnusedImages from "astro-delete-unused-images";
1513

16-
const __filename = fileURLToPath(import.meta.url);
17-
const __dirname = dirname(__filename); // @type-check enabled!
18-
1914
// https://astro.build/config
2015
export default defineConfig({
2116
vite: {
@@ -24,6 +19,7 @@ export default defineConfig({
2419
},
2520
resolve: {
2621
alias: {
22+
"@data": path.resolve("./src/data"),
2723
"@components": path.resolve("./src/components"),
2824
"@sections": path.resolve("./src/components/sections"),
2925
"@layouts": path.resolve("./src/layouts"),
@@ -80,4 +76,7 @@ export default defineConfig({
8076
build: {
8177
minify: true,
8278
},
79+
experimental: {
80+
svg: true,
81+
},
8382
});

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"dependencies": {
1414
"@astro-community/astro-embed-youtube": "^0.5.6",
1515
"@astrojs/check": "^0.9.4",
16-
"@astrojs/mdx": "^4.2.1",
17-
"@astrojs/react": "^4.2.1",
16+
"@astrojs/mdx": "^4.2.3",
17+
"@astrojs/react": "^4.2.3",
1818
"@astrojs/sitemap": "^3.3.0",
1919
"@astrojs/tailwind": "^5.1.4",
2020
"@fontsource-variable/inter": "^5.1.1",
2121
"@tailwindcss/typography": "^0.5.16",
22-
"@types/react": "^19.0.12",
23-
"@types/react-dom": "^19.0.4",
22+
"@types/react": "^19.1.0",
23+
"@types/react-dom": "^19.1.1",
2424
"astro": "^5.1.6",
2525
"astro-delete-unused-images": "^1.0.3",
2626
"astro-meta-tags": "^0.3.1",
@@ -30,14 +30,14 @@
3030
"date-fns-tz": "^3.2.0",
3131
"hastscript": "^9.0.0",
3232
"pagefind": "^1.3.0",
33-
"react": "^19.0.0",
34-
"react-dom": "^19.0.0",
33+
"react": "^19.1.0",
34+
"react-dom": "^19.1.0",
3535
"rehype-autolink-headings": "^7.1.0",
3636
"rehype-slug": "^6.0.0",
3737
"remark-toc": "^9.0.0",
38-
"sharp": "^0.33.5",
38+
"sharp": "^0.34.0",
3939
"tailwindcss": "^3.4.17",
40-
"typescript": "^5.7.3"
40+
"typescript": "^5.8.3"
4141
},
4242
"devDependencies": {
4343
"prettier": "^3.4.2",

0 commit comments

Comments
 (0)