Skip to content

Commit 74f38fa

Browse files
authored
chore: docs dependency bumps (#52)
* deps: docs dependency bumps
1 parent eb13af1 commit 74f38fa

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Inside this project, you'll see the following folders and files:
1717
│ ├── components/
1818
│ ├── content/
1919
│ │ ├── docs/
20-
└── config.ts
20+
│ └── content.config.ts
2121
│ └── env.d.ts
2222
├── astro.config.mjs
2323
├── package.json

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"astro": "astro"
99
},
1010
"dependencies": {
11-
"@astrojs/starlight": "^0.30.1",
12-
"@interledger/docs-design-system": "^0.5.5",
13-
"astro": "^5.0.5",
11+
"@astrojs/starlight": "^0.31.1",
12+
"@interledger/docs-design-system": "^0.6.1",
13+
"astro": "^5.1.7",
1414
"sharp": "^0.33.5",
15-
"starlight-links-validator": "^0.13.4"
15+
"starlight-links-validator": "^0.14.1"
1616
}
1717
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { defineCollection } from 'astro:content';
2+
import { docsLoader } from '@astrojs/starlight/loaders';
23
import { docsSchema, i18nSchema } from '@astrojs/starlight/schema';
34

45
export const collections = {
5-
docs: defineCollection({ schema: docsSchema() }),
6+
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
67
i18n: defineCollection({ type: 'data', schema: i18nSchema() }),
78
};

0 commit comments

Comments
 (0)