openspec-playwright 0.3.11 → 0.3.12

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/openspec-pw +3 -2
  2. package/package.json +1 -1
package/bin/openspec-pw CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/bin/sh
2
- # openspec-pw CLI wrapper
3
- DIR="$(cd "$(dirname "$0")" && pwd)"
2
+ # Resolve symlinks to find real script location, then go up to package root
3
+ REAL="$(readlink -f "$0" 2>/dev/null || echo "$0")"
4
+ DIR="$(cd "$(dirname "$REAL")/.." && pwd)"
4
5
  node "$DIR/dist/index.js" "$@"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openspec-playwright",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
4
4
  "description": "OpenSpec + Playwright E2E verification setup tool for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {