generated from imranbarbhuiya/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: arrrrgggg permalink: http://whatthecommit.com/e690ec4ca2c19f458e249df4358cf461 * docs: use markdown links * chore: bump deps * docs: add external links for djs links * chore: bump deps * chore: nojira: no cry permalink: http://whatthecommit.com/784d18624270ac47133b2ab9aec2efc1
- Loading branch information
1 parent
a174b12
commit 69c5d6f
Showing
23 changed files
with
249 additions
and
385 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.yarn/ | ||
coverage/ | ||
docs/ | ||
.yarnrc.yml | ||
**/CHANGELOG.md |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: tagscript-plugin-discord | ||
monoRepo: true | ||
packagePath: packages/tagscript-plugin-discord | ||
tagTemplate: "{{full-name}}@{{new-version}}" | ||
tagTemplate: '{{full-name}}@{{new-version}}' |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: tagscript | ||
monoRepo: true | ||
packagePath: packages/tagscript | ||
tagTemplate: "{{full-name}}@{{new-version}}" | ||
tagTemplate: '{{full-name}}@{{new-version}}' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
const packageNames = ['discord.js']; | ||
|
||
/** | ||
* | ||
* @type {import('typedoc-plugin-external-link').getURL} | ||
*/ | ||
function getURL(_, type) { | ||
switch (type) { | ||
case 'BaseChannel': | ||
case 'Channel': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/BaseChannel'; | ||
case 'ChatInputCommandInteraction': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/ChatInputCommandInteraction'; | ||
case 'Client': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/Client'; | ||
case 'CommandInteraction': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/CommandInteraction'; | ||
case 'CommandInteractionOptionResolver': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/CommandInteractionOptionResolver'; | ||
case 'Guild': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/Guild'; | ||
case 'GuildMember': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/GuildMember'; | ||
case 'Role': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/Role'; | ||
case 'TextChannel': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/TextChannel'; | ||
case 'User': | ||
return 'https://discord.js.org/#/docs/discord.js/main/class/User'; | ||
|
||
case 'CommandInteractionOption': | ||
return 'https://discord.js.org/#/docs/discord.js/main/typedef/CommandInteractionOption'; | ||
|
||
case 'ApplicationCommandOptionType': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10/enum/ApplicationCommandOptionType'; | ||
case 'ApplicationCommandType': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10/enum/ApplicationCommandType'; | ||
case 'InteractionType': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10/enum/InteractionType'; | ||
|
||
case 'APIAttachment': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10/interface/APIAttachment'; | ||
case 'APIEmbed': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10/interface/APIEmbed'; | ||
case 'APIGuild': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10/interface/APIGuild'; | ||
case 'APIGuildMember': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10/interface/APIGuildMember'; | ||
case 'APIRole': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10/interface/APIRole'; | ||
|
||
case 'APIApplicationCommandInteraction': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10#APIApplicationCommandInteraction'; | ||
case 'APIChannel': | ||
return 'https://discord-api-types.dev/api/discord-api-types-v10#APIChannel'; | ||
} | ||
|
||
return undefined; | ||
} | ||
|
||
module.exports = { packageNames, getURL }; |
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 |
---|---|---|
@@ -1,17 +1,11 @@ | ||
{ | ||
"$schema": "https://typedoc.org/schema.json", | ||
"cleanOutputDir": true, | ||
"entryPointStrategy": "resolve", | ||
"entryPoints": ["packages/tagscript/src/index.ts", "packages/tagscript-plugin-discord/src/index.ts"], | ||
"entryPointStrategy": "packages", | ||
"entryPoints": ["packages/tagscript/", "packages/tagscript-plugin-discord/"], | ||
"excludeExternals": true, | ||
"hideGenerator": true, | ||
"markedOptions": { | ||
"gfm": true, | ||
"mangle": false, | ||
"smartypants": true | ||
}, | ||
"name": "TagScript", | ||
"out": "./docs/", | ||
"readme": "./README.md", | ||
"tsconfig": "./tsconfig.base.json" | ||
"tsconfig": "./tsconfig.base.json", | ||
"externalLinkPath": "scripts/externalConfig.js" | ||
} |
Oops, something went wrong.