Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/deploy_gcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- uses: actions/setup-node@v3
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22

- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- uses: actions/setup-node@v3
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22

- uses: oven-sh/setup-bun@v1
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/iron
22
5 changes: 4 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ export default defineConfig({
starlightLinksValidator({
exclude: ['/participation-guidelines']
}),
starlightFullViewMode({ leftSidebarEnabled: false })
starlightFullViewMode({
leftSidebarEnabled: true,
rightSidebarEnabled: true
})
],
head: [
{
Expand Down
474 changes: 220 additions & 254 deletions bun.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,30 @@
"lint": "prettier --check '**/*.{js,mjs,ts,tsx,json,md,mdx,astro}' && eslint --max-warnings=0 ."
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/node": "^9.5.2",
"@astrojs/starlight": "^0.37.4",
"@interledger/docs-design-system": "^0.11.0",
"@astrojs/mdx": "^5.0.3",
"@astrojs/node": "^10.0.5",
"@astrojs/starlight": "^0.38.3",
"@interledger/docs-design-system": "^0.12.0",
"@types/showdown": "^2.0.6",
"astro": "^5.17.1",
"astro": "^6.1.8",
"html-to-text": "^9.0.5",
"markdown-it": "^14.1.0",
"node-html-parser": "^7.0.2",
"markdown-it": "^14.1.1",
"node-html-parser": "^7.1.0",
"sharp": "^0.34.5",
"showdown": "^2.1.0",
"starlight-fullview-mode": "^0.2.6",
"starlight-links-validator": "^0.19.1"
"starlight-links-validator": "^0.23.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/parser": "^8.54.0",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.39.2",
"@eslint/js": "^10.0.1",
"@typescript-eslint/parser": "^8.59.0",
"astro-eslint-parser": "^1.4.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"globals": "^17.2.0",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"typescript-eslint": "^8.54.0"
"eslint-plugin-astro": "^1.7.0",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.59.0"
}
}
3 changes: 2 additions & 1 deletion src/content.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { defineCollection, z } from 'astro:content'
import { defineCollection } from 'astro:content'
import { z } from 'astro/zod'
import { docsLoader, i18nLoader } from '@astrojs/starlight/loaders'
import { docsSchema, i18nSchema } from '@astrojs/starlight/schema'
import { glob } from 'astro/loaders'
Expand Down
Loading