@evo-dev/evodev 0.0.1-alpha.7 → 0.0.1-alpha.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evo-dev/evodev",
3
- "version": "0.0.1-alpha.7",
3
+ "version": "0.0.1-alpha.9",
4
4
  "description": "AI Coding infrastructure CLI for real R&D workflows.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -9,7 +9,7 @@
9
9
  "directory": "packages/cli"
10
10
  },
11
11
  "bin": {
12
- "evodev": "./dist/evodev"
12
+ "evodev": "./dist/index.js"
13
13
  },
14
14
  "files": ["dist", "package.json"],
15
15
  "engines": {
package/dist/evodev DELETED
@@ -1,11 +0,0 @@
1
- #!/bin/sh
2
- set -eu
3
-
4
- if ! command -v node >/dev/null 2>&1; then
5
- echo "EvoDev CLI requires Node.js >=20 to run." >&2
6
- echo "Install Node.js, then restart your shell and run: evodev doctor." >&2
7
- exit 1
8
- fi
9
-
10
- SCRIPT_DIR="$(CDPATH= cd "$(dirname "$0")" && pwd)"
11
- exec node "$SCRIPT_DIR/index.js" "$@"