Skip to content

Commit 473a817

Browse files
committed
fix: outdated documentation links in templates
1 parent 828ca2e commit 473a817

File tree

5 files changed

+5
-5
lines changed
  • packages

5 files changed

+5
-5
lines changed

packages/commandkit/src/CommandKit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class CommandKit extends EventEmitter {
2525
* Create a new command and event handler with CommandKit.
2626
*
2727
* @param options - The default CommandKit configuration.
28-
* @see {@link https://commandkit.dev/guide/commandkit-setup}
28+
* @see {@link https://commandkit.js.org/docs/guide/commandkit-setup}
2929
*/
3030
constructor(options: CommandKitOptions) {
3131
if (CommandKit.instance) {

packages/create-commandkit/templates/JavaScript/cjs/src/commands/General/ping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ module.exports = {
1414

1515
/** @type {import('commandkit').CommandOptions} */
1616
options: {
17-
// https://commandkit.dev/docs/types/CommandOptions
17+
// https://commandkit.js.org/docs/api-reference/types/CommandOptions
1818
},
1919
};

packages/create-commandkit/templates/JavaScript/esm/src/commands/General/ping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ export const run = ({ interaction }) => {
1313

1414
/** @type {import('commandkit').CommandOptions} */
1515
export const options = {
16-
// https://commandkit.dev/docs/types/CommandOptions
16+
// https://commandkit.js.org/docs/api-reference/types/CommandOptions
1717
};

packages/create-commandkit/templates/TypeScript/cjs/src/commands/General/ping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ export const run = ({ interaction }: SlashCommandProps) => {
1414
};
1515

1616
export const options: CommandOptions = {
17-
// https://commandkit.dev/docs/types/CommandOptions
17+
// https://commandkit.js.org/docs/api-reference/types/CommandOptions
1818
};

packages/create-commandkit/templates/TypeScript/esm/src/commands/General/ping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ export const run = ({ interaction }: SlashCommandProps) => {
1414
};
1515

1616
export const options: CommandOptions = {
17-
// https://commandkit.dev/docs/types/CommandOptions
17+
// https://commandkit.js.org/docs/api-reference/types/CommandOptions
1818
};

0 commit comments

Comments
 (0)