1.0.2 • Published 4 years ago

grelease v1.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

gRelease

A fucking simple git release helper.

Just create a .grelease-file in your project-root directory and define the name of your master and dev branch and the relativ-path to your package.json.

Now you can install the package globally with npm i -g grelease and use it with the command grelease in your project folder. Alternatively you can use the script with npx grelease in your project folder without installing it first.

Example:

{
  "masterBranch": "master",
  "devBranch": "develop",
  "packages": ["./api/package.json", "./client/package.json"]
}