Skip to content

Commit

Permalink
fix(buid): yarn build update
Browse files Browse the repository at this point in the history
  • Loading branch information
rredpoppy committed Mar 8, 2024
1 parent ba4297f commit f1856c4
Show file tree
Hide file tree
Showing 4 changed files with 882 additions and 751 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "",
"name": "coderdojo",
"type": "module",
"version": "0.0.1",
"scripts": {
Expand All @@ -23,9 +23,11 @@
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.7",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
"typescript": "^5.4.2",
"vite": "^5.1.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10"
}
},
"license": "UNLICENSED"
}
2 changes: 1 addition & 1 deletion src/components/Blogs.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { type CollectionEntry } from "astro:content";
import { getCollection } from "astro:content";
import Image from "astro/components/Image.astro";
import { Image } from "astro:assets";
const posts = (await getCollection("posts")).sort(
(a, b) => Date.parse(b.data.date) - Date.parse(a.data.date)
Expand Down
2 changes: 1 addition & 1 deletion src/components/Join.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import Image from "astro/components/Image.astro";
import { Image } from "astro:assets";
import tudor_image from "../../public/tudor.jpeg";
---

Expand Down
Loading

0 comments on commit f1856c4

Please sign in to comment.