@colbymchenry/codegraph-darwin-arm64 0.9.0 → 0.9.1
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/bin/codegraph +11 -1
- package/lib/node_modules/.package-lock.json +1 -1
- package/lib/package.json +1 -1
- package/package.json +1 -1
package/bin/codegraph
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
|
-
|
|
2
|
+
# Resolve symlinks (e.g. the ~/.local/bin/codegraph link install.sh creates) so
|
|
3
|
+
# we find the real bundle dir, not the symlink's location.
|
|
4
|
+
SELF="$0"
|
|
5
|
+
while [ -L "$SELF" ]; do
|
|
6
|
+
target="$(readlink "$SELF")"
|
|
7
|
+
case "$target" in
|
|
8
|
+
/*) SELF="$target" ;;
|
|
9
|
+
*) SELF="$(dirname "$SELF")/$target" ;;
|
|
10
|
+
esac
|
|
11
|
+
done
|
|
12
|
+
DIR="$(cd "$(dirname "$SELF")/.." && pwd)"
|
|
3
13
|
exec "$DIR/node" "$DIR/lib/dist/bin/codegraph.js" "$@"
|
package/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colbymchenry/codegraph",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Supercharge Claude Code with semantic code intelligence. 94% fewer tool calls • 77% faster exploration • 100% local.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|