mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-22 19:01:14 +00:00
* refactor(plugins): split plugin installation flows * fix(plugins): keep compatibility helper private
8 lines
552 B
TypeScript
8 lines
552 B
TypeScript
// Public plugin install surface. Source-specific implementation lives in focused modules.
|
|
export { installPluginFromInstalledPackageDir } from "./install-installed-package.js";
|
|
export { installPluginFromNpmPackArchive } from "./install-npm-pack.js";
|
|
export { installPluginFromNpmSpec } from "./install-npm.js";
|
|
export { installPluginFromArchive, installPluginFromPath } from "./install-package.js";
|
|
export { resolvePluginInstallDir } from "./install-paths.js";
|
|
export { PLUGIN_INSTALL_ERROR_CODE, type InstallPluginResult } from "./install-types.js";
|