Skip to content

Commit

Permalink
chore: docs dependency bumps (#63)
Browse files Browse the repository at this point in the history
* deps: docs dependency bumps
  • Loading branch information
JoblersTune authored Jan 21, 2025
1 parent a48b832 commit 97dfac4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Inside this project, you'll see the following folders and files:
β”œβ”€β”€ src/
β”‚ β”œβ”€β”€ content/
β”‚ β”‚ β”œβ”€β”€ docs/
β”‚ β”‚ └── config.ts
β”‚ └── content.config.ts
β”‚ └── env.d.ts
β”œβ”€β”€ astro.config.mjs
β”œβ”€β”€ package.json
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "^0.30.1",
"@interledger/docs-design-system": "^0.5.5",
"astro": "^5.0.5",
"@astrojs/starlight": "^0.31.1",
"@interledger/docs-design-system": "^0.6.1",
"astro": "^5.1.7",
"rehype-mathjax": "^6.0.0",
"remark-math": "^6.0.0",
"sharp": "^0.33.5",
"starlight-links-validator": "^0.13.4"
"starlight-links-validator": "^0.14.1"
}
}
3 changes: 2 additions & 1 deletion src/content/config.ts β†’ src/content.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { defineCollection } from "astro:content";
import { docsLoader } from "@astrojs/starlight/loaders";
import { docsSchema, i18nSchema } from "@astrojs/starlight/schema";

export const collections = {
docs: defineCollection({ schema: docsSchema() }),
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
i18n: defineCollection({ type: "data", schema: i18nSchema() }),
};

0 comments on commit 97dfac4

Please sign in to comment.