| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Every publish logged:
npm warn publish npm auto-corrected some errors in your package.json
npm warn publish "bin[moshcode]" script name bin/moshcode.mjs was invalid
and removed
which reads as though the CLI shipped without its entry points. It did not:
npm rewrites `./bin/moshcode.mjs` to `bin/moshcode.mjs` and publishes that, so
0.24.0, 0.24.2 and 0.24.3 all have working bins — checked against the registry.
So this changes nothing for anyone installing moshcode. It writes down what npm
was already doing, and removes a warning that would cost the next person the
same few minutes to dismiss. `npm pkg fix` produces exactly this diff and
nothing else.
No version bump: the published manifest is byte-identical to what 0.24.3
already has, so there is nothing to release. It rides with the next one.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
ThreatCrush Security Scan92 finding(s) HIGH/CRITICAL: 50 | MEDIUM: 42
…and 42 more. Full results in the Security tab. Snippets are redacted; ThreatCrush never prints matched credential material. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary
Every publish logged:
"invalid and removed" reads as though the CLI shipped without its entry points. It didn't. npm rewrites ./bin/moshcode.mjs to bin/moshcode.mjs and publishes that — 0.24.0, 0.24.2 and 0.24.3 all have working bins, verified against the registry:
$ npm view moshcode@0.24.3 bin { "moshcode": "bin/moshcode.mjs", "moshscript": "bin/moshscript.mjs" }So this changes nothing for anyone installing moshcode. It writes down what npm was already doing, and removes a warning that would cost the next person the same few minutes to dismiss.
npm pkg fix produces exactly this diff and nothing else — I let it make the change rather than guessing at the cause from the wording.
Verification
No version bump
The published manifest would be byte-identical to 0.24.3's, so there is nothing to release. This rides with the next real release.
🤖 Generated with Claude Code