Skip to content

Commit bcf80f5

Browse files
committed
Merge branch 'ep2025' into ep2025-social
2 parents 6694708 + 4c0eb68 commit bcf80f5

File tree

17 files changed

+1108
-1915
lines changed

17 files changed

+1108
-1915
lines changed

astro.config.mjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ import deleteUnusedImages from "astro-delete-unused-images";
1313
import preload from "astro-preload";
1414
import { execSync } from "node:child_process";
1515

16+
let gitVersion = "";
17+
try {
18+
gitVersion = execSync("git rev-parse --short HEAD 2>&1 > /dev/null");
19+
} catch (e) {}
20+
1621
// https://astro.build/config
1722
export default defineConfig({
1823
vite: {
@@ -21,9 +26,7 @@ export default defineConfig({
2126
.toISOString()
2227
.replace(/[-:T.Z]/g, "")
2328
.slice(0, 14),
24-
"import.meta.env.GIT_VERSION": new String(
25-
execSync("git rev-parse --short HEAD")
26-
),
29+
"import.meta.env.GIT_VERSION": new String(gitVersion),
2730
},
2831
resolve: {
2932
alias: {
@@ -83,7 +86,4 @@ export default defineConfig({
8386
remotePatterns: [{ protocol: "https" }],
8487
domains: ["programme.europython.eu", "placehold.co"],
8588
},
86-
experimental: {
87-
svg: true,
88-
},
8989
});

package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
"dependencies": {
1414
"@astro-community/astro-embed-youtube": "^0.5.6",
1515
"@astrojs/check": "^0.9.4",
16-
"@astrojs/mdx": "^4.2.3",
17-
"@astrojs/react": "^4.2.3",
18-
"@astrojs/sitemap": "^3.3.0",
16+
"@astrojs/mdx": "^4.2.5",
17+
"@astrojs/react": "^4.2.5",
18+
"@astrojs/sitemap": "^3.3.1",
1919
"@astrojs/tailwind": "^5.1.5",
2020
"@fontsource-variable/inter": "^5.2.5",
2121
"@fortawesome/fontawesome-free": "^6.7.2",
2222
"@tailwindcss/typography": "^0.5.16",
23-
"@types/react": "^19.1.0",
24-
"@types/react-dom": "^19.1.1",
25-
"astro": "^5.5.2",
23+
"@types/react": "^19.1.2",
24+
"@types/react-dom": "^19.1.2",
25+
"astro": "^5.7.5",
2626
"astro-delete-unused-images": "^1.0.3",
2727
"astro-meta-tags": "^0.3.1",
2828
"astro-pagefind": "^1.8.3",
@@ -32,22 +32,23 @@
3232
"date-fns-tz": "^3.2.0",
3333
"hastscript": "^9.0.1",
3434
"js-yaml": "^4.1.0",
35-
"marked": "^15.0.7",
35+
"marked": "^15.0.11",
3636
"pagefind": "^1.3.0",
3737
"react": "^19.1.0",
3838
"react-dom": "^19.1.0",
3939
"rehype-autolink-headings": "^7.1.0",
4040
"rehype-slug": "^6.0.0",
4141
"remark-toc": "^9.0.0",
42-
"sharp": "^0.34.0",
42+
"sharp": "^0.34.1",
4343
"tailwindcss": "^3.4.17",
4444
"typescript": "^5.8.3"
4545
},
4646
"devDependencies": {
4747
"@types/js-yaml": "^4.0.9",
4848
"prettier": "^3.5.3",
4949
"prettier-plugin-astro": "^0.14.1",
50-
"puppeteer": "^24.7.2"
50+
"tsx": "^4.19.3",
51+
"typescript": "^5.8.3"
5152
},
5253
"prettier": {
5354
"proseWrap": "always"

0 commit comments

Comments
 (0)