Skip to content

Commit 54ae3de

Browse files
committed
chore: update deps
1 parent 959ecc2 commit 54ae3de

File tree

21 files changed

+289
-337
lines changed

21 files changed

+289
-337
lines changed

astro.config.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import { defineConfig } from "astro/config";
2-
3-
import tailwind from "@tailwindcss/vite";
4-
51
import mdx from "@astrojs/mdx";
62
import sitemap from "@astrojs/sitemap";
73
import svelte from "@astrojs/svelte";
4+
import tailwind from "@tailwindcss/vite";
5+
import { defineConfig } from "astro/config";
86
import icon from "astro-icon";
97
// import { visualizer } from "rollup-plugin-visualizer";
108

biome.jsonc

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",
@@ -14,13 +14,14 @@
1414
"indentWidth": 2,
1515
"lineWidth": 120,
1616
},
17-
"organizeImports": {
18-
"enabled": true,
19-
},
17+
"assist": { "actions": { "source": { "organizeImports": "on" } } },
2018
"linter": {
2119
"enabled": true,
2220
"rules": {
2321
"recommended": true,
22+
"suspicious": {
23+
"noUnknownAtRules": "off",
24+
},
2425
},
2526
},
2627
"javascript": {
@@ -31,13 +32,17 @@
3132
},
3233
"overrides": [
3334
{
34-
"include": ["*.svelte", "*.astro", "*.vue"],
35+
"includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
3536
"linter": {
3637
"rules": {
3738
"style": {
3839
"useConst": "off",
3940
"useImportType": "off",
4041
},
42+
"correctness": {
43+
"noUnusedImports": "off",
44+
"noUnusedVariables": "off",
45+
},
4146
},
4247
},
4348
},

bun.lock

Lines changed: 224 additions & 274 deletions
Large diffs are not rendered by default.

contents/banner.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Banner } from "+/schema.ts";
2+
23
const banner: Banner = {
34
shown: true,
45
kind: "notify",

flake.lock

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

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,34 +23,34 @@
2323
"preview": "astro preview"
2424
},
2525
"dependencies": {
26-
"@astrojs/mdx": "^4.3.0",
27-
"@astrojs/sitemap": "^3.4.1",
28-
"@astrojs/svelte": "^7.1.0",
29-
"@date-fns/tz": "^1.2.0",
26+
"@astrojs/mdx": "^4.3.7",
27+
"@astrojs/sitemap": "^3.6.0",
28+
"@astrojs/svelte": "^7.2.0",
29+
"@date-fns/tz": "^1.4.1",
3030
"@iconify-json/feather": "^1.2.1",
31-
"@iconify-json/flowbite": "^1.2.5",
32-
"@tailwindcss/typography": "^0.5.16",
33-
"astro": "^5.10.0",
31+
"@iconify-json/flowbite": "^1.2.7",
32+
"@tailwindcss/typography": "^0.5.19",
33+
"astro": "^5.14.4",
3434
"astro-icon": "^1.1.5",
35-
"bits-ui": "^1.8.0",
36-
"cheerio": "^1.1.0",
37-
"daisyui": "^5.0.43",
35+
"bits-ui": "^2.11.5",
36+
"cheerio": "^1.1.2",
37+
"daisyui": "^5.2.3",
3838
"date-fns": "^4.1.0",
3939
"markdown-to-txt": "^2.0.1",
40-
"sharp": "^0.34.2",
41-
"svelte": "^5.34.7",
42-
"tailwindcss": "^4.1.10",
43-
"@tailwindcss/vite": "^4.1.10"
40+
"sharp": "^0.34.4",
41+
"svelte": "^5.39.11",
42+
"tailwindcss": "^4.1.14",
43+
"@tailwindcss/vite": "^4.1.14"
4444
},
4545
"devDependencies": {
4646
"@astrojs/check": "^0.9.4",
47-
"@biomejs/biome": "^1.9.4",
48-
"lefthook": "^1.11.14",
49-
"prettier": "^3.5.3",
47+
"@biomejs/biome": "^2.2.5",
48+
"lefthook": "^1.13.6",
49+
"prettier": "^3.6.2",
5050
"prettier-plugin-astro": "^0.14.1",
5151
"prettier-plugin-svelte": "^3.4.0",
52-
"prettier-plugin-tailwindcss": "^0.6.13",
53-
"rollup-plugin-visualizer": "^5.14.0",
54-
"typescript": "^5.8.3"
52+
"prettier-plugin-tailwindcss": "^0.6.14",
53+
"rollup-plugin-visualizer": "^6.0.4",
54+
"typescript": "^5.9.3"
5555
}
5656
}

src/components/ActionButton.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
// support legacy articles because they import from this path
33
import ActionButtonSource from "./utils/ActionButton.astro";
4+
45
interface Props {
56
to: string;
67
}

src/components/ActivityPage/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
import { Picture } from "astro:assets";
32
import JoinUsCTA from "+/components/common/JoinUsCTA.astro";
43
import GlobalLayout from "+/layouts/GlobalLayout.astro";
54
import { Focus } from "+/schema";
5+
import { Picture } from "astro:assets";
66
import type { ImageMetadata } from "astro";
77
88
interface Props {

src/components/ActivityPage/Section.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
import { Picture } from "astro:assets";
3+
34
interface Props {
45
title: string;
56
"align-image": "left" | "right";

src/components/common/ArticleList.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
import { Picture } from "astro:assets";
32
import type { Article } from "+/schema";
3+
import { Picture } from "astro:assets";
44
import { format } from "date-fns";
55
import { markdownToTxt } from "markdown-to-txt";
66

0 commit comments

Comments
 (0)