Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Release npm packages easily.
ez-release
is a command that combines common tasks about package publishments.
git changelog
command from git-extras.version
field in package.json
.Here's the list of commands that will be executed.
$ ez-release patch --dryrun
$ npm version patch --no-git-tag-version
$ git changelog --tag 0.1.2
$ git add package.json
$ git commit -m 0.1.2
$ git tag v0.1.2
$ git push origin
$ git push origin --tags
$ npm publish
Running all the steps listed above manually can be tiresome and error prone.
So ez-release
come to rescue. All you have to do is specify the new version,
whether it's a major, minor, or patch version bump. Then edit the generated
changelog. You are good to go.
$ brew install git-extras # tested with version 3.0.0
$ npm install ez-release -g
$ ez-release patch -m 'Upgrade to %s for reasons'
$ ez-release patch --dryrun # see what commands will be executed
$ ez-release --help
Usage ez-release [<newversion> | patch | minor | major | prepatch | preminor | premajor | prerelease]
Options:
--message, -m The message for the commit of version and changelog. If the
message contains %s then that will be replaced with the
resulting version number.
--dryrun, -d Test run.
$ NPM=cnpm ez-release
FAQs
Release npm packages easily
We found that ez-release demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.