We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my package, I have
"bin": "dist/cli.mjs",
but when I publish with packtio, it stays the same.
I would like this to become just "cli.mjs".
"cli.mjs"
In dist/package.json, it still says "bin": "dist/cli.mjs",
Node version 16 OS Windows
The package.json "bin" can be a string or a object of type Record<string, string>.
"bin"
The text was updated successfully, but these errors were encountered:
mikbry
No branches or pull requests
Description
In my package, I have
but when I publish with packtio, it stays the same.
Expected behaviour
I would like this to become just
"cli.mjs"
.Actual behaviour
In dist/package.json, it still says
"bin": "dist/cli.mjs",
Environnement
Node version 16
OS Windows
Further Notes
The package.json
"bin"
can be a string or a object of type Record<string, string>.The text was updated successfully, but these errors were encountered: