Skip to content

Commit 5e87a65

Browse files
chore(deps): bump dependencies (#1175)
- `@astrojs/starlight`: 0.32.6 → 0.33.0 - `starlight-blog`: 0.19.0 → 0.20.0 - `vercel`: 41.4.1 → 41.5.0
1 parent 3f503c6 commit 5e87a65

4 files changed

Lines changed: 62 additions & 35 deletions

File tree

astro.config.mjs

Lines changed: 37 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,43 @@ export default defineConfig({
121121
editLink: {
122122
baseUrl: 'https://github.com/Open-reSource/openresource.dev/edit/main/',
123123
},
124-
social: {
125-
github: 'https://github.com/Open-reSource/openresource.dev',
126-
discord: 'https://discord.gg/fpUDwEMGwE',
127-
'x.com': 'https://x.com/open_resource',
128-
linkedin: 'https://linkedin.com/company/open-re-source/',
129-
mastodon: 'https://fosstodon.org/@openresource',
130-
blueSky: 'https://bsky.app/profile/openresource.dev',
131-
threads: 'https://www.threads.net/@openresource',
132-
},
124+
social: [
125+
{
126+
icon: 'github',
127+
label: 'GitHub',
128+
href: 'https://github.com/Open-reSource/openresource.dev',
129+
},
130+
{
131+
icon: 'discord',
132+
label: 'Discord',
133+
href: 'https://discord.gg/fpUDwEMGwE',
134+
},
135+
{
136+
icon: 'x.com',
137+
label: 'X',
138+
href: 'https://x.com/open_resource',
139+
},
140+
{
141+
icon: 'linkedin',
142+
label: 'LinkedIn',
143+
href: 'https://linkedin.com/company/open-re-source/',
144+
},
145+
{
146+
icon: 'mastodon',
147+
label: 'Mastodon',
148+
href: 'https://fosstodon.org/@openresource',
149+
},
150+
{
151+
icon: 'blueSky',
152+
label: 'Blue Sky',
153+
href: 'https://bsky.app/profile/openresource.dev',
154+
},
155+
{
156+
icon: 'threads',
157+
label: 'Threads',
158+
href: 'https://www.threads.net/@openresource',
159+
},
160+
],
133161
customCss: ['./src/styles/custom.css'],
134162
defaultLocale: 'root',
135163
locales: {

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"dependencies": {
1818
"@astrojs/check": "^0.9.4",
19-
"@astrojs/starlight": "^0.32.6",
19+
"@astrojs/starlight": "^0.33.0",
2020
"@astrojs/vercel": "^8.1.3",
2121
"@vercel/analytics": "^1.5.0",
2222
"astro": "^5.6.1"
@@ -35,11 +35,11 @@
3535
"prettier": "^3.5.3",
3636
"prettier-plugin-astro": "^0.14.1",
3737
"reading-time": "^1.5.0",
38-
"starlight-blog": "^0.19.0",
38+
"starlight-blog": "^0.20.0",
3939
"starlight-links-validator": "^0.15.0",
4040
"starlight-showcases": "^0.3.0",
4141
"tsx": "^4.19.3",
42-
"vercel": "^41.4.1",
42+
"vercel": "^41.5.0",
4343
"vitest": "^3.1.1"
4444
}
4545
}

src/components/GuideReadingTime.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ guideReadingTime = Math.ceil(guideReadingTime);
1212
---
1313

1414
<p class="sl-flex">
15-
<Icon name="seti:clock" />
16-
This {slug === 'guide' || slug === 'guide/' ? 'guide' : 'module'} will take you approximately
15+
<Icon name="seti:clock" /> This {slug === 'guide' || slug === 'guide/' ? 'guide' : 'module'} will take you approximately
1716

1817
{
1918
guideReadingTime >= 60

0 commit comments

Comments
 (0)