UNPKG

kist

Version:

Lightweight Package Pipeline Processor with Plugin Architecture

12 lines 1.08 kB
export { Kist } from "./kist.js"; export * from "./types/index.js"; export * from "./cli.js"; export { ActionInterface } from "./interface/ActionInterface.js"; export { ActionPlugin } from "./interface/ActionPlugin.js"; export { PluginMetadata } from "./interface/PluginMetadata.js"; export { PluginManager } from "./core/plugin/PluginManager.js"; export { Action } from "./core/pipeline/Action.js"; export { ActionRegistry } from "./core/pipeline/ActionRegistry.js"; export { CORE_ACTIONS, MIGRATED_ACTIONS, MIGRATED_PACKAGES, type CoreActionName, type MigratedActionName, } from "./config/actions.config.js"; export { KistError, ConfigError, ConfigNotFoundError, ConfigParseError, ConfigValidationError, BuildError, ActionError, StepError, StageError, PluginError, PluginNotFoundError, PluginInitError, FileSystemError, FileNotFoundError, DirectoryNotFoundError, PermissionError, PathTraversalError, CLIError, InvalidArgumentError, MissingArgumentError, TimeoutError, ResourceLimitError, ErrorCodes, type ErrorCode, } from "./errors/index.js"; //# sourceMappingURL=index.d.ts.map