diff --git a/packages/publisher/index.mdx b/packages/publisher/index.mdx index 734ac6f..2d89e25 100644 --- a/packages/publisher/index.mdx +++ b/packages/publisher/index.mdx @@ -10,7 +10,6 @@ sidebar: - A common provider of this is `dotenv` ```txt title=".env" DISCORD_TOKEN= -APPLICATION_ID= NODE_ENV= ``` - Calls the discord API with the [PUT route](https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-global-application-commands). Wherever your commands directory is located, publish will override the existing application commands at Discord. @@ -27,8 +26,6 @@ await makeDependencies(({ add }) => { }); ``` - - ## Features - Automatically syncs api with your command base - generates JSON file of output (**.sern/command-data-remote.json**) diff --git a/packages/publisher/index.ts b/packages/publisher/index.ts index 48677cb..cd91d3d 100644 --- a/packages/publisher/index.ts +++ b/packages/publisher/index.ts @@ -165,9 +165,6 @@ export class Publisher implements Init { } } } - this.logger.info({ - message: "Result of publishing is located at .sern/command-data-remote.json.\n Do not remove this!" - }); await writeFile( '.sern/command-data-remote.json', JSON.stringify({ global: globalJsonBody,