releasify
releasify copied to clipboard
skip npm
🚀 Feature Proposal
A parameter to skip npm phase. The bump of the version will be skipped as well
Motivation
if i have a published module, I need to skip npm but i need to create the GH release
Example
releasify publish --skip-npm --from-commit xxx --to-commit yyy
I would like to work on this issue. Any hint on how to start?
Release Process with --skip-npm
- It checks that your local repo is aligned with your git remote
- It creates a GitHub release with a CHANGELOG description also creating a tag with the same version as per your package.json
Which files I have to edit? A unit test is required?
Thanks!
Which files I have to edit?
Here is where the npm publish is done and that one we would like to avoid:
https://github.com/fastify/releasify/blob/master/lib/commands/publish.js#L122
A unit test is required?
Yes, we need it