File size: 614 Bytes
e249c6d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | // Real setup entries share the invocation build instead of transforming plugins inside a test.
const currentModuleUrl = import.meta.url;
export const cliCompactionBackendEntrypoints = [
{
provider: "claude-cli",
pluginId: "anthropic",
currentModuleUrl,
sourceWorkerName: "../../../extensions/anthropic/setup-api",
distWorkerPath: "extensions/anthropic/setup-api.js",
},
{
provider: "google-gemini-cli",
pluginId: "google",
currentModuleUrl,
sourceWorkerName: "../../../extensions/google/setup-api",
distWorkerPath: "extensions/google/setup-api.js",
},
] as const;
|