fix(pi-ai): normalize bin path to avoid consumer lockfile churn (#6812)

The npm registry normalizes bin paths in packument metadata
("dist/cli.js") while the published tarball keeps the authored
"./dist/cli.js". npm consumers get perpetual one-line
package-lock.json flips depending on whether resolution used
registry metadata or the extracted package.

Drop the "./" prefix to match the registry-normalized form and the
sibling coding-agent package.

Fixes #6811
This commit is contained in:
Federico Jaramillo Martinez
2026-07-20 09:18:14 +02:00
committed by GitHub
parent 5f2f7d0679
commit 916de90dbf
+1 -1
View File
@@ -41,7 +41,7 @@
}
},
"bin": {
"pi-ai": "./dist/cli.js"
"pi-ai": "dist/cli.js"
},
"files": [
"dist",