fix(channels): keep bundled setup entries dependency-light

This commit is contained in:
Peter Steinberger
2026-04-24 06:09:34 +01:00
parent d91f6a05c6
commit d32fdcebc1
16 changed files with 605 additions and 18 deletions

View File

@@ -3,7 +3,7 @@ import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entr
export default defineBundledChannelSetupEntry({
importMetaUrl: import.meta.url,
plugin: {
specifier: "./api.js",
specifier: "./setup-plugin-api.js",
exportName: "qqbotSetupPlugin",
},
});

View File

@@ -0,0 +1,3 @@
// Keep bundled setup entry imports narrow so setup loads do not pull the
// broader QQ Bot runtime plugin surface.
export { qqbotSetupPlugin } from "./src/channel.setup.js";