-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.4.5 + re-stylings for everything and modifications on testBot
- Loading branch information
1 parent
9fb2fc7
commit 78216ee
Showing
58 changed files
with
951 additions
and
812 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,103 +5,103 @@ import starlightTypeDoc, { typeDocSidebarGroup } from "starlight-typedoc" | |
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
site: "https://tomato6966.github.io/", | ||
base: "lavalink-client", | ||
integrations: [ | ||
starlight({ | ||
title: "Lavalink Client", | ||
social: { | ||
github: "https://github.com/Tomato6966/lavalink-client", | ||
site: "https://tomato6966.github.io/", | ||
base: "lavalink-client", | ||
integrations: [ | ||
starlight({ | ||
title: "Lavalink Client", | ||
social: { | ||
github: "https://github.com/Tomato6966/lavalink-client", | ||
discord: "https://discord.gg/AsgD3gtPnb", | ||
email: "mailto:[email protected]", | ||
}, | ||
editLink: { | ||
baseUrl: "https://github.com/Tomato6966/lavalink-client/tree/main", | ||
}, | ||
plugins: [ | ||
// Generate the documentation. | ||
starlightTypeDoc({ | ||
entryPoints: ["../src/structures/**/*.ts"], | ||
tsconfig: "../tsconfig.json", | ||
typeDoc: { | ||
useCodeBlocks: true, | ||
parametersFormat: "table", | ||
propertiesFormat: "table", | ||
enumMembersFormat: "table", | ||
typeDeclarationFormat: "table", | ||
indexFormat: "table", | ||
expandParameters: true, | ||
name: "Lavalink Client", | ||
}, | ||
pagination: true, | ||
}), | ||
], | ||
sidebar: [ | ||
{ | ||
label: "Getting Started", | ||
collapsed: true, | ||
items: [ | ||
{ | ||
label: "installation", | ||
link: "/home/installation", | ||
}, | ||
{ | ||
label: "Setup Lavalink-Server", | ||
link: "/home/setup-lavalink", | ||
}, | ||
{ | ||
label: "Features", | ||
link: "/home/features", | ||
}, | ||
{ | ||
label: "Example Guides", | ||
link: "/home/example", | ||
}, | ||
{ | ||
label: "Sample Configuration", | ||
link: "/home/configuration", | ||
}, | ||
}, | ||
editLink: { | ||
baseUrl: "https://github.com/Tomato6966/lavalink-client/tree/main", | ||
}, | ||
plugins: [ | ||
// Generate the documentation. | ||
starlightTypeDoc({ | ||
entryPoints: ["../src/structures/**/*.ts"], | ||
tsconfig: "../tsconfig.json", | ||
typeDoc: { | ||
useCodeBlocks: true, | ||
parametersFormat: "table", | ||
propertiesFormat: "table", | ||
enumMembersFormat: "table", | ||
typeDeclarationFormat: "table", | ||
indexFormat: "table", | ||
expandParameters: true, | ||
name: "Lavalink Client", | ||
}, | ||
pagination: true, | ||
}), | ||
], | ||
sidebar: [ | ||
{ | ||
label: "Getting Started", | ||
collapsed: true, | ||
items: [ | ||
{ | ||
label: "installation", | ||
link: "/home/installation", | ||
}, | ||
{ | ||
label: "Setup Lavalink-Server", | ||
link: "/home/setup-lavalink", | ||
}, | ||
{ | ||
label: "Features", | ||
link: "/home/features", | ||
}, | ||
{ | ||
label: "Example Guides", | ||
link: "/home/example", | ||
}, | ||
{ | ||
label: "Sample Configuration", | ||
link: "/home/configuration", | ||
}, | ||
{ | ||
label: "Checkout Docs (Manager-Class)", | ||
link: "/api/lavalinkmanager/classes/lavalinkmanager" | ||
}, | ||
], | ||
}, | ||
{ | ||
label: "Extra", | ||
collapsed: true, | ||
items: [ | ||
{ | ||
label: "Manager Events", | ||
link: "/extra/manager-events", | ||
}, | ||
{ | ||
label: "Node Events", | ||
link: "/extra/node-events", | ||
}, | ||
{ | ||
label: "Resuming", | ||
link: "/extra/resuming", | ||
}, | ||
{ | ||
label: "Version-Update-Log", | ||
link: "/extra/version-log", | ||
} | ||
] | ||
}, | ||
typeDocSidebarGroup, | ||
{ | ||
label: "GitHub", | ||
link: "https://github.com/Tomato6966/lavalink-client", | ||
}, | ||
{ | ||
label: "NPM", | ||
link: "https://npmjs.com/lavalink-client", | ||
}, | ||
{ | ||
label: "Example Bot", | ||
link: "https://github.com/Tomato6966/lavalink-client/tree/main/testBot", | ||
}, | ||
], | ||
}, | ||
{ | ||
label: "Extra", | ||
collapsed: true, | ||
items: [ | ||
{ | ||
label: "Manager Events", | ||
link: "/extra/manager-events", | ||
}, | ||
{ | ||
label: "Node Events", | ||
link: "/extra/node-events", | ||
}, | ||
{ | ||
label: "Resuming", | ||
link: "/extra/resuming", | ||
}, | ||
{ | ||
label: "Version-Update-Log", | ||
link: "/extra/version-log", | ||
} | ||
] | ||
}, | ||
typeDocSidebarGroup, | ||
{ | ||
label: "GitHub", | ||
link: "https://github.com/Tomato6966/lavalink-client", | ||
}, | ||
{ | ||
label: "NPM", | ||
link: "https://npmjs.com/lavalink-client", | ||
}, | ||
{ | ||
label: "Example Bot", | ||
link: "https://github.com/Tomato6966/lavalink-client/tree/main/testBot", | ||
}, | ||
{ | ||
label: "Official Lavalink-Discord", | ||
link: "https://discord.gg/lavalink-1082302532421943407" | ||
|
@@ -110,7 +110,7 @@ export default defineConfig({ | |
label: "Official Lavalink-Web", | ||
link: "https://lavalink.dev" | ||
} | ||
], | ||
}), | ||
], | ||
], | ||
}), | ||
], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.