refactor(plugin): 重构插件定义和安装流程

- 更新插件配置格式,增加依赖库和插件类型字段
- 修改插件安装流程,支持安装依赖插件和第三方库
- 优化插件列表过滤逻辑,按类型筛选插件
- 调整 Dockerfile,使用 Node.js22 镜像并更新 pnpm 安装方式
This commit is contained in:
xiaojunnuo
2025-04-11 23:39:40 +08:00
parent 420b0394a7
commit 3d9620abb0
8 changed files with 176 additions and 85 deletions

View File

@@ -65,6 +65,8 @@ export type PluginDefine = Registrable & {
};
needPlus?: boolean;
showRunStrategy?: boolean;
pluginType?: string; //类型
type?: string; //来源
};
export type ITaskPlugin = {