diff --git a/packages/carbon/src/index.ts b/packages/carbon/src/index.ts index b63f56b7..ef6f88f5 100644 --- a/packages/carbon/src/index.ts +++ b/packages/carbon/src/index.ts @@ -12,6 +12,7 @@ export * from "./abstracts/BaseGuildChannel.js" export * from "./abstracts/BaseGuildTextChannel.js" export * from "./abstracts/BaseInteraction.js" export * from "./abstracts/GuildThreadOnlyChannel.js" +export * from "./abstracts/Plugin.js" // ----- Classes ----- export * from "./classes/Button.js" @@ -39,6 +40,7 @@ export * from "./internals/ChannelSelectMenuInteraction.js" export * from "./internals/CommandHandler.js" export * from "./internals/CommandInteraction.js" export * from "./internals/ComponentHandler.js" +export * from "./internals/FieldsHandler.js" export * from "./internals/MentionableSelectMenuInteraction.js" export * from "./internals/ModalHandler.js" export * from "./internals/ModalInteraction.js" @@ -63,5 +65,9 @@ export * from "./structures/Message.js" export * from "./structures/Role.js" export * from "./structures/User.js" -// ----- Types ----- +// ----- Misc ----- export * from "discord-api-types/v10" +export * from "./adapters/shared.js" +export * from "./createHandle.js" +export * from "./types.js" +export * from "./utils.js" diff --git a/turbo.json b/turbo.json index aa2dd903..792eb997 100644 --- a/turbo.json +++ b/turbo.json @@ -14,8 +14,10 @@ "persistent": true }, "web:build": { - "dependsOn": ["build", "docs"] + "dependsOn": ["build", "docs"], + "outputs": ["website/.next/**"] }, + "web:start": {}, "web:dev": {}, "docs": { "dependsOn": ["build", "^docs"],