mirror of
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git
synced 2026-07-22 14:07:56 +00:00
fix(cli): use npm-canonical bin path so the uipro command survives publish (#392)
The bin mapping was "./dist/index.js". On publish, npm normalizes bin values and the leading ./ triggers a warning -- on the npm version in the release runner it reports `bin[uipro] script name dist/index.js was invalid and removed`, i.e. the published package ships with no `uipro` command, so `npx uipro-cli init` would not work even once publishing succeeds (see #353). Change the value to the canonical `dist/index.js` (exactly what `npm pkg fix` produces). src/index.ts already has the `#!/usr/bin/env node` shebang, which bun build preserves, so the bin is executable. Verified: `npm publish --dry-run` no longer emits the bin warning, and dist/index.js is included in the tarball; typecheck passes. Addresses the package-metadata half of #353. Actually landing on npm still requires a release run with a token that has publish rights for uipro-cli.
This commit is contained in:
parent
d86f44368d
commit
318e0b2e40
@ -4,7 +4,7 @@
|
||||
"description": "CLI to install UI/UX Pro Max skill for AI coding assistants",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"uipro": "./dist/index.js"
|
||||
"uipro": "dist/index.js"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user