Skip to content

Commit

Permalink
chore: docs dependency bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
JoblersTune committed Jan 21, 2025
1 parent 836cff2 commit d290142
Show file tree
Hide file tree
Showing 4 changed files with 885 additions and 461 deletions.
7 changes: 6 additions & 1 deletion packages/documentation/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,12 @@ export default defineConfig({
],
plugins: [
starlightLinksValidator({
errorOnLocalLinks: false
errorOnLocalLinks: false,
exclude: [
'/apis/graphql/backend/mutations/',
'/apis/graphql/auth/mutations/',
'/apis/graphql/backend/inputobjects/#additionalpropertyinput',
],
})
]
}),
Expand Down
10 changes: 5 additions & 5 deletions packages/documentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/markdown-remark": "^5.3.0",
"@astrojs/starlight": "^0.29.0",
"@interledger/docs-design-system": "^0.5.2",
"astro": "4.16.18",
"@astrojs/markdown-remark": "^6.0.2",
"@astrojs/starlight": "^0.31.1",
"@interledger/docs-design-system": "^0.6.1",
"astro": "5.1.8",
"astro-graphql-plugin": "^0.3.0",
"graphql": "16.8.1",
"mermaid": "^11.4.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-mathjax": "^6.0.0",
"remark-math": "^6.0.0",
"starlight-links-validator": "^0.13.2"
"starlight-links-validator": "^0.14.1"
}
}
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() })
}
Loading

0 comments on commit d290142

Please sign in to comment.