@quantod/qq 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/bin/qq +2 -1
  2. package/package.json +1 -1
package/bin/qq CHANGED
@@ -1,2 +1,3 @@
1
1
  #!/bin/sh
2
- exec node "$(dirname "$0")/../dist/index.js" "$@"
2
+ SELF=$(readlink -f "$0" 2>/dev/null || realpath "$0" 2>/dev/null || echo "$0")
3
+ exec node "$(dirname "$SELF")/../dist/index.js" "$@"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantod/qq",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Persistent queue for multi-stage Claude agent pipelines",
5
5
  "license": "MIT",
6
6
  "engines": {