@proxysoul/soulforge 1.5.0 → 1.5.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/dist/bin.sh +10 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/bin.sh
CHANGED
|
@@ -8,4 +8,13 @@ if ! command -v bun >/dev/null 2>&1; then
|
|
|
8
8
|
echo "Then run: soulforge" >&2
|
|
9
9
|
exit 1
|
|
10
10
|
fi
|
|
11
|
-
|
|
11
|
+
# Resolve symlinks (bun/pnpm global installs symlink into ~/.bun/bin/)
|
|
12
|
+
SELF="$0"
|
|
13
|
+
if [ -L "$SELF" ]; then
|
|
14
|
+
TARGET="$(readlink "$SELF")"
|
|
15
|
+
case "$TARGET" in
|
|
16
|
+
/*) SELF="$TARGET" ;;
|
|
17
|
+
*) SELF="$(dirname "$SELF")/$TARGET" ;;
|
|
18
|
+
esac
|
|
19
|
+
fi
|
|
20
|
+
exec bun "$(cd "$(dirname "$SELF")" && pwd)/index.js" "$@"
|
package/dist/index.js
CHANGED
|
@@ -57814,7 +57814,7 @@ var package_default;
|
|
|
57814
57814
|
var init_package = __esm(() => {
|
|
57815
57815
|
package_default = {
|
|
57816
57816
|
name: "@proxysoul/soulforge",
|
|
57817
|
-
version: "1.5.
|
|
57817
|
+
version: "1.5.1",
|
|
57818
57818
|
description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
|
|
57819
57819
|
repository: {
|
|
57820
57820
|
type: "git",
|