feat: support feishu official plugin (#418)

This commit is contained in:
paisley
2026-03-11 18:18:46 +08:00
committed by GitHub
Unverified
parent f37d2ac112
commit ce7e890509
9 changed files with 142 additions and 29 deletions

View File

@@ -38,6 +38,7 @@ const PLUGINS = [
{ npmName: '@soimy/dingtalk', pluginId: 'dingtalk' },
{ npmName: '@wecom/wecom-openclaw-plugin', pluginId: 'wecom' },
{ npmName: '@sliverp/qqbot', pluginId: 'qqbot' },
{ npmName: '@larksuite/openclaw-lark', pluginId: 'feishu-openclaw-plugin' },
];
function getVirtualStoreNodeModules(realPkgPath) {

View File

@@ -350,6 +350,7 @@ function cleanupBundle(outputDir) {
'node_modules/koffi/src',
'node_modules/koffi/vendor',
'node_modules/koffi/doc',
'extensions/feishu', // Removed in favor of official @larksuite/openclaw-lark plugin
];
for (const rel of LARGE_REMOVALS) {
if (rmSafe(path.join(outputDir, rel))) removedCount++;