Skip to content

Commit

Permalink
cli shouldnt start with other stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Feb 7, 2025
1 parent f786a89 commit d200e72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"check": "biome check --apply .",
"preinstall": "npx only-allow bun",
"build": "turbo run build --filter=./packages/*",
"start": "bun --filter=./packages/* start",
"start": "bun --filter=./packages/* --filter=!@elizaos/cli start",
"agent": "bun --filter=@elizaos/agent start",
"dev": "bun --filter=./packages/* dev",
"release": "bun run build && bun format && npx lerna publish --no-private --force-publish",
Expand Down
3 changes: 1 addition & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"cli": "tsup src/index.ts --watch --onSuccess \"node dist/index.js\"",
"build": "tsup",
"typecheck": "tsc --noEmit",
"start:dev": "cross-env COMPONENTS_REGISTRY_URL=http://localhost:3003 node dist/index.js",
"start": "node dist/index.js",
"start:cli": "node dist/index.js",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"release": "changeset version",
Expand Down

0 comments on commit d200e72

Please sign in to comment.