Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/algolia-crawler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
crawler-api-key: ${{ secrets.CRAWLER_API_KEY }}
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }}
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }}
site-url: 'https://modding.resonite.net'
site-url: 'https://modding.resonite.net'
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pnpm-lock.yaml
pnpm-workspace.yaml
src/content/docs/reference
23 changes: 9 additions & 14 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -51,24 +51,22 @@ export default defineConfig({
{
label: 'Getting Started',
translations: { en: 'Getting Started' },
items: [
{ translations: { en: 'Installation' }, slug: 'getting-started/installation' },
{ translations: { en: 'Your First Mod' }, slug: 'getting-started/first-mod' },
{ translations: { en: 'Troubleshooting' }, slug: 'getting-started/troubleshooting' },
],
autogenerate: { directory: 'getting-started' },
},
{
label: 'Creating a Mod',
translations: { en: 'Creating a Mod' },
autogenerate: { directory: 'creating-a-mod' },
},
{
label: 'Guides',
translations: { en: 'Guides' },
items: [
{ translations: { en: 'Mod Development Basics' }, slug: 'guides/mod-basics' },
{ translations: { en: 'Debugging Mods' }, slug: 'guides/debugging' },
],
autogenerate: { directory: 'guides' },
},
{
label: 'Recipes',
translations: { en: 'Recipes' },
items: [],
autogenerate: { directory: 'recipes' },
},
{
label: 'Reference',
Expand All @@ -79,10 +77,7 @@ export default defineConfig({
{
label: 'Resources',
translations: { en: 'Resources' },
items: [
{ translations: { en: 'Tools & Utilities' }, slug: 'resources/tools' },
{ translations: { en: 'Links & Community' }, slug: 'resources/links' },
],
autogenerate: { directory: 'resources' },
},
],
components: {
Expand Down
8 changes: 5 additions & 3 deletions docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
{
"files": [
"BepInEx.Preloader.Core/BepInEx.Preloader.Core.csproj",
"BepInEx.Core/BepInEx.Core.csproj"
"BepInEx.Core/BepInEx.Core.csproj",
"Runtimes/NET/BepInEx.NET.Common/BepInEx.NET.Common.csproj",
"Runtimes/NET/BepInEx.NET.CoreCLR/BepInEx.NET.CoreCLR.csproj"
],
"exclude": ["**/bin/**", "**/obj/**"]
}
Expand All @@ -15,8 +17,8 @@
"shouldSkipMarkup": false,
"disableGitFeatures": false,
"disableDefaultFilter": false,
"categoryLayout": "flattened",
"namespaceLayout": "flattened",
"categoryLayout": "nested",
"namespaceLayout": "nested",
"memberLayout": "separatePages",
"properties": {
"TargetFramework": "net9.0"
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
"@astrojs/starlight": "^0.35.2",
"@astrojs/starlight-docsearch": "^0.6.0",
"@astrojs/svelte": "^7.1.0",
"astro": "^5.6.1",
"sharp": "^0.34.2",
"astro": "^5.13.5",
"sharp": "^0.34.3",
"starlight-theme-rapide": "^0.5.1",
"svelte": "^5.38.2",
"svelte": "^5.38.6",
"typescript": "^5.9.2"
},
"devDependencies": {
"oxlint": "^1.12.0",
"oxlint": "^1.14.0",
"oxlint-tsgolint": "^0.0.4",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1",
"vite": "^7.1.3"
"vite": "^7.1.4"
}
}
Loading
Loading