diff --git a/package.json b/package.json index cd30d95f8c9..45399d3624b 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "check": "biome check --apply .", "preinstall": "npx only-allow bun", "build": "turbo run build --filter=./packages/*", + "build:cli": "turbo run build --filter=./packages/cli && cd packages/cli && bun link", "start": "turbo run start --filter=!./packages/docs", "agent": "turbo run start --filter=@elizaos/agent", "dev": "turbo run dev --filter=!./packages/docs", diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 0075a39aa0d..9b34b9e7c0d 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -9,8 +9,6 @@ import { teeCommand as tee } from "@/src/commands/tee" process.on("SIGINT", () => process.exit(0)) process.on("SIGTERM", () => process.exit(0)) -console.log("Hello World") - async function main() { const program = new Command() .name("eliza") diff --git a/tsconfig.json b/tsconfig.json index 5c785f078df..490a5a8b71e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,9 +14,6 @@ "references": [ { "path": "packages/core" - }, - { - "path": "packages/client-slack" } ] }