mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 11:21:07 +00:00
104 lines
3.0 KiB
TypeScript
104 lines
3.0 KiB
TypeScript
const BUNDLED_PLUGIN_ROOT_DIR = "extensions";
|
|
|
|
function bundledPluginFile(pluginId: string, relativePath: string, suffix = ""): string {
|
|
return `${BUNDLED_PLUGIN_ROOT_DIR}/${pluginId}/${relativePath}${suffix}`;
|
|
}
|
|
|
|
const rootEntries = [
|
|
"openclaw.mjs!",
|
|
"src/index.ts!",
|
|
"src/entry.ts!",
|
|
"src/cli/daemon-cli.ts!",
|
|
"src/infra/warning-filter.ts!",
|
|
bundledPluginFile("telegram", "src/audit.ts", "!"),
|
|
bundledPluginFile("telegram", "src/token.ts", "!"),
|
|
"src/hooks/bundled/*/handler.ts!",
|
|
"src/hooks/llm-slug-generator.ts!",
|
|
"src/plugin-sdk/*.ts!",
|
|
] as const;
|
|
|
|
const config = {
|
|
ignoreFiles: [
|
|
"scripts/**",
|
|
"**/__tests__/**",
|
|
"src/test-utils/**",
|
|
"**/test-helpers/**",
|
|
"**/test-fixtures/**",
|
|
"**/live-*.ts",
|
|
"**/test-*.ts",
|
|
"**/*test-helpers.ts",
|
|
"**/*test-fixtures.ts",
|
|
"**/*test-harness.ts",
|
|
"**/*test-utils.ts",
|
|
"**/*mocks.ts",
|
|
"**/*.e2e-mocks.ts",
|
|
"**/*.e2e-*.ts",
|
|
"**/*.harness.ts",
|
|
"**/*.job-fixtures.ts",
|
|
"**/*.mock-harness.ts",
|
|
"**/*.suite-helpers.ts",
|
|
"**/*.test-setup.ts",
|
|
"**/job-fixtures.ts",
|
|
"**/*test-mocks.ts",
|
|
"**/*test-runtime*.ts",
|
|
"**/*.mock-setup.ts",
|
|
"**/*.cases.ts",
|
|
"**/*.e2e-harness.ts",
|
|
"**/*.fixture.ts",
|
|
"**/*.fixtures.ts",
|
|
"**/*.mocks.ts",
|
|
"**/*.mocks.shared.ts",
|
|
"**/*.shared-test.ts",
|
|
"**/*.suite.ts",
|
|
"**/*.test-runtime.ts",
|
|
"**/*.testkit.ts",
|
|
"**/*.test-fixtures.ts",
|
|
"**/*.test-harness.ts",
|
|
"**/*.test-helper.ts",
|
|
"**/*.test-helpers.ts",
|
|
"**/*.test-mocks.ts",
|
|
"**/*.test-utils.ts",
|
|
"src/gateway/live-image-probe.ts",
|
|
"src/secrets/credential-matrix.ts",
|
|
"src/agents/claude-cli-runner.ts",
|
|
"src/agents/pi-auth-json.ts",
|
|
"src/agents/tool-policy.conformance.ts",
|
|
"src/auto-reply/reply/audio-tags.ts",
|
|
"src/gateway/live-tool-probe-utils.ts",
|
|
"src/gateway/server.auth.shared.ts",
|
|
"src/shared/text/assistant-visible-text.ts",
|
|
bundledPluginFile("telegram", "src/bot/reply-threading.ts"),
|
|
bundledPluginFile("telegram", "src/draft-chunking.ts"),
|
|
bundledPluginFile("msteams", "src/conversation-store-memory.ts"),
|
|
bundledPluginFile("msteams", "src/polls-store-memory.ts"),
|
|
bundledPluginFile("voice-call", "src/providers/index.ts"),
|
|
bundledPluginFile("voice-call", "src/providers/tts-openai.ts"),
|
|
],
|
|
workspaces: {
|
|
".": {
|
|
entry: rootEntries,
|
|
project: [
|
|
"src/**/*.ts!",
|
|
"scripts/**/*.{js,mjs,cjs,ts,mts,cts}!",
|
|
"*.config.{js,mjs,cjs,ts,mts,cts}!",
|
|
"*.mjs!",
|
|
],
|
|
},
|
|
ui: {
|
|
entry: ["index.html!", "src/main.ts!", "vite.config.ts!", "vitest*.ts!"],
|
|
project: ["src/**/*.{ts,tsx}!"],
|
|
},
|
|
"packages/*": {
|
|
entry: ["index.js!", "scripts/postinstall.js!"],
|
|
project: ["index.js!", "scripts/**/*.js!"],
|
|
},
|
|
[`${BUNDLED_PLUGIN_ROOT_DIR}/*`]: {
|
|
entry: ["index.ts!"],
|
|
project: ["index.ts!", "src/**/*.ts!"],
|
|
ignoreDependencies: ["openclaw"],
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export default config;
|