Skip to content

Commit ee3125d

Browse files
authored
Merge pull request #19 from milan-codes/dev
Dev
2 parents 84e72e0 + d3e1c30 commit ee3125d

5 files changed

Lines changed: 32 additions & 18 deletions

File tree

bun.lockb

6.25 KB
Binary file not shown.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,30 @@
1515
"prepare": "husky"
1616
},
1717
"dependencies": {
18-
"@astrojs/partytown": "^2.1.3",
19-
"@fontsource-variable/roboto-mono": "^5.1.1",
20-
"@tailwindcss/vite": "^4.0.8",
21-
"astro": "^5.3.1",
18+
"@astrojs/partytown": "^2.1.4",
19+
"@fontsource-variable/roboto-mono": "^5.2.6",
20+
"@tailwindcss/vite": "^4.1.11",
21+
"astro": "^5.11.0",
2222
"mdast-util-to-string": "^4.0.0",
2323
"reading-time": "^1.5.0",
24-
"tailwindcss": "^4.0.8"
24+
"tailwindcss": "^4.1.11"
2525
},
2626
"devDependencies": {
27-
"@commitlint/cli": "^19.7.1",
28-
"@commitlint/config-conventional": "^19.7.1",
29-
"@eslint/js": "^9.21.0",
27+
"@commitlint/cli": "^19.8.1",
28+
"@commitlint/config-conventional": "^19.8.1",
29+
"@eslint/js": "^9.30.1",
3030
"@tailwindcss/typography": "^0.5.16",
31-
"@typescript-eslint/parser": "^8.25.0",
32-
"astro-eslint-parser": "^1.2.1",
33-
"eslint": "^9.21.0",
31+
"@typescript-eslint/parser": "^8.35.1",
32+
"astro-eslint-parser": "^1.2.2",
33+
"eslint": "^9.30.1",
3434
"eslint-plugin-astro": "^1.3.1",
3535
"husky": "^9.1.7",
36-
"prettier": "^3.5.2",
36+
"prettier": "^3.6.2",
3737
"prettier-plugin-astro": "^0.14.1",
38-
"prettier-plugin-tailwindcss": "^0.6.11",
38+
"prettier-plugin-tailwindcss": "^0.6.13",
3939
"rehype-katex": "^7.0.1",
4040
"rehype-mathjax": "^7.1.0",
4141
"remark-math": "^6.0.0",
42-
"typescript-eslint": "^8.25.0"
42+
"typescript-eslint": "^8.35.1"
4343
}
4444
}

src/components/BlogPost.astro

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ const { remarkPluginFrontmatter } = await render(post);
4040
class="prose dark:prose-invert my-8 max-w-none text-gray-600 dark:text-gray-400"
4141
>
4242
If you have any questions or comments, or you would like to point out any
43-
errors in any of the blog posts, please reach out to me at <a
44-
href="mailto:milanherke@protonmail.com">milanherke@protonmail.com</a
45-
>.
43+
errors in any of the blog posts, please leave a comment.
4644
</div>
4745
</div>

src/layouts/BaseLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const isProd = import.meta.env.PROD;
2929
)
3030
}
3131
</head>
32-
<body class="mx-auto max-w-3xl bg-gray-50 px-4 dark:bg-[#0a0a0a]">
32+
<body class="mx-auto max-w-3xl bg-gray-50 p-4 dark:bg-[#0a0a0a]">
3333
<slot />
3434
</body>
3535
</html>

src/layouts/PostLayout.astro

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,20 @@ const { post } = Astro.props;
2121
<BlogPost post={post}>
2222
<slot />
2323
</BlogPost>
24+
<script
25+
src="https://giscus.app/client.js"
26+
data-repo="milan-codes/milan-codes.github.io"
27+
data-repo-id="R_kgDOI5_00w"
28+
data-category="Posts"
29+
data-category-id="DIC_kwDOI5_0084Csa0O"
30+
data-mapping="pathname"
31+
data-strict="0"
32+
data-reactions-enabled="1"
33+
data-emit-metadata="0"
34+
data-input-position="bottom"
35+
data-theme="preferred_color_scheme"
36+
data-lang="en"
37+
data-loading="lazy"
38+
crossorigin="anonymous"
39+
async></script>
2440
</BaseLayout>

0 commit comments

Comments
 (0)