0.2.0 • Published 8 years ago

relaser v0.2.0

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

Relaser

Javascript tool for release Node and Bower packages

Installation

$ npm i relaser -g

###Usage Inside the root of your repository type

$ relaser [version]

npm.io

Where version is one of patch, minor, major according to the Npm and Bower docs (default is patch)

The configuration file AKA relaser.json

Relaser uses a configuration file in order to know what should relase.

relaser.json

{
  "managers": ["bower", "npm"],
  "push_code": true,
  "publish": true,
  "build_command": null
}
  • managers: specify on which platforms you want to publish.
  • push_code: automatically pushes the tags and code to the repo (default true).
  • publish: automatically publishes the version (default true).
  • build_command: sometimes you need to do some extra job before publish the new version, like building assets, transpailing code, etc.