Skip to content

Commit dc442af

Browse files
didrod205claude
andcommitted
fix: normalize bin paths so the CLI installs
npm was stripping bin entries with a "./dist/cli.js" target ("script name ... was invalid and removed"), which would have left npx shadowbuster / unredact non-functional. Drop the "./" prefix; verified the published tarball now retains both bins. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 79b8a5d commit dc442af

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
}
1515
},
1616
"bin": {
17-
"shadowbuster": "./dist/cli.js",
18-
"unredact": "./dist/cli.js"
17+
"shadowbuster": "dist/cli.js",
18+
"unredact": "dist/cli.js"
1919
},
2020
"files": [
2121
"dist"

0 commit comments

Comments
 (0)