@colbymchenry/codegraph-darwin-x64 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 CHANGED
@@ -1,3 +1,13 @@
1
1
  #!/bin/sh
2
- DIR="$(cd "$(dirname "$0")/.." && pwd)"
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" "$@"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colbymchenry/codegraph",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colbymchenry/codegraph",
3
- "version": "0.9.0",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colbymchenry/codegraph-darwin-x64",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "CodeGraph self-contained bundle for darwin-x64",
5
5
  "os": [
6
6
  "darwin"