Skip to content

Commit 3140669

Browse files
authored
Merge pull request #230 from ELIXIR-NO/revert-229-chore/update-deps
Revert "chore: update to astro v5"
2 parents 2721557 + fa8cf11 commit 3140669

File tree

22 files changed

+1535
-2141
lines changed

22 files changed

+1535
-2141
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,3 @@ pnpm-debug.log*
2222

2323
# jetbrains setting folder
2424
.idea/
25-
26-
public/pagefind

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ export default defineConfig({
2222
transformer: "sass"
2323
}
2424
},
25-
output: "server",
25+
output: "hybrid",
2626
adapter: cloudflare(),
2727
});

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
"postbuild": "pagefind --site dist"
1616
},
1717
"dependencies": {
18-
"@astrojs/check": "^0.9.0",
19-
"@astrojs/cloudflare": "^12.0.0",
20-
"@astrojs/markdown-remark": "^6.0.0",
21-
"@astrojs/mdx": "^4.0.0",
22-
"@astrojs/react": "^4.0.0",
23-
"@astrojs/tailwind": "^6.0.0",
18+
"@astrojs/check": "^0.5.10",
19+
"@astrojs/cloudflare": "^11.1.0",
20+
"@astrojs/markdown-remark": "^5.2.0",
21+
"@astrojs/mdx": "^3.0.0",
22+
"@astrojs/react": "^3.3.1",
23+
"@astrojs/tailwind": "^5.1.0",
2424
"@headlessui/react": "^2.1.2",
2525
"@heroicons/react": "^2.1.3",
2626
"@tailwindcss/forms": "^0.5.7",
2727
"animate.css": "^4.1.1",
28-
"astro": "^5.0.0",
28+
"astro": "^4.7.0",
2929
"dayjs": "^1.11.12",
3030
"dompurify": "^3.2.4",
3131
"leaflet": "^1.9.4",

pnpm-lock.yaml

Lines changed: 1503 additions & 2097 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/news/genomic-data-infrastructure-eu-launch/gdi-logo.svg renamed to public/assets/news/genomic-data-infrastructure-is-launched-a-new-eu-project-to-unlock-the-potential-of-human-genomics-for-healthcare-research-and-innovation/gdi-logo.svg

File renamed without changes.

public/assets/news/norwegian-life-science-data-agreement/cover.jpg renamed to public/assets/news/norwegian-life-sciences-infrastructures-announce-strategic-agreement-for-establishing-long-term-collaboration-on-the-management-of-research-data/cover.jpg

File renamed without changes.

src/components/featured-news.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const news = (await getCollection("news"))
1010
{news.map((article) => {
1111
return (
1212
<li>
13-
<a href={`/news/${article.id}`}>
13+
<a href={`/news/${article.slug}`}>
1414
<span class="link block">{article.data.title}</span>
1515
<time class="datetime block text-sm">{article.data.date}</time>
1616
</a>

src/components/services-list.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { services } = Astro.props;
77
{services.map((service) => (
88
<li class={`overflow-clip bg-light-surface dark:bg-dark-surface shadow-2xl relative px-6 py-6 flex animate__animated animate__fadeIn`}
99
data-tags={`${service.tags?.join(",")}`}>
10-
<a href={`/services/${service.id}`}>
10+
<a href={`/services/${service.slug}`}>
1111
{service.tags.includes("service") && (
1212
<span class="absolute shadow top-0 z-10 text-xs right-0 text-white bg-brand-primary px-1.5 py-0.5 rounded-bl opacity-75">
1313
Node Service

src/content/news/life-science-einfra-training-nov.mdx renamed to src/content/news/course-using-the-norwegian-e-infrastructure-for-life-science-nels-and-usegalaxyno-28-29-nov.mdx

File renamed without changes.

src/content/news/elixir-norway-data-management-workshop.mdx renamed to src/content/news/elixir-norway-and-the-centre-for-digital-life-norway-is-organizing-a-data-management-planning-workshop-for-life-science-projects.mdx

File renamed without changes.

0 commit comments

Comments
 (0)