Skip to content

Commit 6e74616

Browse files
robbeverhelstclaude
andcommitted
fix: exclude compiled binaries from npm package and fix bin path
The npm package was exceeding the registry size limit (413 Payload Too Large) because dist/binaries/ (~150MB of compiled binaries) was included. Also fixes the bin entry path format. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a3c8f78 commit 6e74616

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/robbeverhelst/tsarr.git"
88
},
99
"bin": {
10-
"tsarr": "./dist/cli/index.js"
10+
"tsarr": "dist/cli/index.js"
1111
},
1212
"main": "dist/index.js",
1313
"module": "dist/index.js",
@@ -76,7 +76,8 @@
7676
"node": ">=18.0.0"
7777
},
7878
"files": [
79-
"dist"
79+
"dist",
80+
"!dist/binaries"
8081
],
8182
"keywords": [
8283
"servarr",

0 commit comments

Comments
 (0)