From a8e4dd618caa6121b3dd6a29311b21d9e98cafec Mon Sep 17 00:00:00 2001 From: Yamada Dev Date: Fri, 14 Feb 2025 00:00:28 +0900 Subject: [PATCH] feat(package): Export executeAction to enable library to run the same way as CLI --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index 94114404f..b2eddf6c7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,9 @@ export type { CliOptions } from './cli/types.js'; // Config export type { RepomixConfigFile as RepomixConfig } from './config/configSchema.js'; +// Execute action +export { executeAction } from './cli/cliRun.js'; + // Init action export { runInitAction } from './cli/actions/initAction.js';