Skip to content

Commit 35edc69

Browse files
committed
chore: fix Starlight 0.39 sidebar API, stale @twodft imports, and pin CI action SHAs
1 parent d2e01db commit 35edc69

9 files changed

Lines changed: 2419 additions & 4598 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
name: Lint
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v6
26-
- uses: pnpm/action-setup@v4
27-
- uses: actions/setup-node@v6
25+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
26+
- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
27+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
2828
with:
2929
node-version: 22
3030
cache: 'pnpm'
@@ -34,11 +34,11 @@ jobs:
3434
- name: Lint (External)
3535
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login != github.repository_owner }}
3636
run: pnpm run lint
37-
37+
3838
# Otherwise, run lint autofixer
3939
- name: Lint
4040
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}
41-
uses: wearerequired/lint-action@v2
41+
uses: wearerequired/lint-action@548d8a7c4b04d3553d32ed5b6e91eb171e10e7bb # v2
4242
env:
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444
with:
@@ -54,9 +54,9 @@ jobs:
5454
name: Smoke Test
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v6
58-
- uses: pnpm/action-setup@v4
59-
- uses: actions/setup-node@v6
57+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
58+
- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
59+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
6060
with:
6161
node-version: 22
6262
cache: 'pnpm'

demo/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
"@iconify-json/ri": "^1.2.10"
1616
},
1717
"devDependencies": {
18-
"@astrojs/cloudflare": "^13.1.8",
18+
"@astrojs/cloudflare": "^13.5.1",
1919
"@dallay/astro-icon": "workspace:*",
20-
"astro": "^6.1.4"
20+
"astro": "^6.3.3",
21+
"wrangler": "^4.92.0"
2122
}
2223
}

demo/src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { Icon } from "@twodft/astro-icon/components";
2+
import { Icon } from "@dallay/astro-icon/components";
33
import Base from "../layouts/base.astro";
44
55
const icon = "adjustment";

demo/src/pages/map.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { Icon } from "@twodft/astro-icon/components";
2+
import { Icon } from "@dallay/astro-icon/components";
33
import Base from "../layouts/base.astro";
44
---
55

packages/core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@
6363
"dependencies": {
6464
"@iconify/tools": "^5.0.11",
6565
"@iconify/types": "^2.0.0",
66-
"@iconify/utils": "^3.1.0"
66+
"@iconify/utils": "^3.1.3"
6767
},
6868
"devDependencies": {
69-
"@types/node": "^25.5.2",
70-
"astro": "^6.1.4",
71-
"typescript": "^6.0.2",
72-
"vite": "^7.0.0"
69+
"@types/node": "^25.8.0",
70+
"astro": "^6.3.3",
71+
"typescript": "^6.0.3",
72+
"vite": "^7.3.2"
7373
}
7474
}

packages/service/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
},
1919
"homepage": "https://github.com/dallay/astro-icon#readme",
2020
"dependencies": {
21-
"@iconify/json": "^2.2.459",
21+
"@iconify/json": "^2.2.473",
2222
"@iconify/json-tools": "^1.0.10",
2323
"etag": "^1.8.1"
2424
},
2525
"devDependencies": {
26-
"@vercel/node": "^5.7.0"
26+
"@vercel/node": "^5.8.1"
2727
}
2828
}

packages/www/astro.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig({
77
starlight({
88
title: 'Astro Icon',
99
social: [
10-
{ icon: 'github', label: 'GitHub', href: 'https://github.com/natemoo-re/astro-icon' },
10+
{ icon: 'github', label: 'GitHub', href: 'https://github.com/dallay/astro-icon' },
1111
],
1212
sidebar: [
1313
{
@@ -29,7 +29,7 @@ export default defineConfig({
2929
},
3030
{
3131
label: 'Reference',
32-
autogenerate: { directory: 'reference' },
32+
items: [{ autogenerate: { directory: 'reference' } }],
3333
},
3434
],
3535
}),

packages/www/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"@astrojs/check": "^0.9.8",
15-
"@astrojs/starlight": "^0.38.2",
16-
"astro": "^6.1.4",
14+
"@astrojs/check": "^0.9.9",
15+
"@astrojs/starlight": "^0.39.2",
16+
"astro": "^6.3.3",
1717
"sharp": "^0.34.5",
18-
"typescript": "^6.0.2"
18+
"typescript": "^6.0.3"
1919
}
2020
}

0 commit comments

Comments
 (0)