Skip to content

Commit 07c06bf

Browse files
authored
install dependabot and update deps (#229)
1 parent 5af4d0c commit 07c06bf

File tree

6 files changed

+81
-105
lines changed

6 files changed

+81
-105
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
enable-beta-ecosystems: true # support bun
3+
updates:
4+
- package-ecosystem: "npm"
5+
directory: "."
6+
schedule:
7+
interval: "weekly"
8+
timezone: "Asia/Tokyo"
9+
target-branch: "main"

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: oven-sh/setup-bun@v2
1515
with:
16-
bun-version: "1.2.4"
16+
bun-version: 1.2.5
1717
- run: bun install --frozen-lockfile
1818
- run: bun check
1919
typos:
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@v4
3030
- uses: oven-sh/setup-bun@v2
3131
with:
32-
bun-version: "1.2.4"
32+
bun-version: 1.2.5
3333
- run: bun install --frozen-lockfile
3434
- uses: actions/cache@v4
3535
with:

bun.lock

Lines changed: 55 additions & 87 deletions
Large diffs are not rendered by default.

flake.lock

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

package.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"homepage": "https://utcode.net",
44
"description": "website of ut.code();, version 3",
55
"private": true,
6-
"version": "3.1.1",
6+
"version": "3.1.2",
77
"keywords": [
88
"astro",
99
"ut.code();"
@@ -15,40 +15,41 @@
1515
"dev": "astro dev",
1616
"check": "bun check:only && bun format:check",
1717
"check:only": "astro check",
18+
"fix": "bun format",
1819
"format": "biome check . --fix --unsafe && bun prettier . --write",
1920
"format:check": "biome check . && bun prettier --check .",
2021
"format:staged": "biome check . --fix && bun prettier --write",
2122
"build": "astro build",
2223
"preview": "astro preview"
2324
},
2425
"dependencies": {
25-
"@astrojs/mdx": "^4.1.0",
26-
"@astrojs/sitemap": "^3.2.1",
27-
"@astrojs/svelte": "^7.0.6",
26+
"@astrojs/mdx": "^4.2.2",
27+
"@astrojs/sitemap": "^3.3.0",
28+
"@astrojs/svelte": "^7.0.8",
2829
"@date-fns/tz": "^1.2.0",
2930
"@iconify-json/feather": "^1.2.1",
3031
"@tailwindcss/typography": "^0.5.16",
31-
"astro": "^5.4.2",
32+
"astro": "^5.5.5",
3233
"astro-icon": "^1.1.5",
3334
"bits-ui": "^1.3.13",
34-
"daisyui": "^5.0.4",
35+
"daisyui": "^5.0.9",
3536
"date-fns": "^4.1.0",
3637
"markdown-to-txt": "^2.0.1",
3738
"sharp": "^0.33.5",
38-
"svelte": "^5.23.1"
39+
"svelte": "^5.25.3"
3940
},
4041
"devDependencies": {
4142
"@astrojs/check": "^0.9.4",
4243
"@biomejs/biome": "^1.9.4",
43-
"@tailwindcss/vite": "^4.0.12",
44-
"@types/bun": "^1.2.4",
45-
"lefthook": "^1.11.3",
44+
"@tailwindcss/vite": "^4.0.17",
45+
"@types/bun": "^1.2.6",
46+
"lefthook": "^1.11.5",
4647
"prettier": "^3.5.3",
4748
"prettier-plugin-astro": "^0.14.1",
4849
"prettier-plugin-svelte": "^3.3.3",
4950
"prettier-plugin-tailwindcss": "^0.6.11",
5051
"rollup-plugin-visualizer": "^5.14.0",
51-
"tailwindcss": "^4.0.12",
52+
"tailwindcss": "^4.0.17",
5253
"typescript": "^5.8.2"
5354
}
5455
}

src/components/ArticleList.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ const articlesWithExcerpts = await Promise.all(
5656
const imageWidth = baseW * (isFeatured ? 2 : 1);
5757
const imageHeight = baseW * (3 / 5) * (isFeatured ? 2 : 1);
5858

59-
console.log(article.data.bg_color);
60-
6159
article.data.fit ??= "cover";
6260
article.data.position ??= "center";
6361

0 commit comments

Comments
 (0)