A light weight package release tool.
- Run in command line
$ npm install verpub -g # global install verpub
$ verpub publish
- If this project do not contain subPackage, then skip this step. Otherwise it will allow you to select a specific package to publish.
- Select a release tag and release version.
- Check if your git work tree is not clean, then process end.
- Write version to your package.
- Run git commit && git tag && git push(include tags).
- Run npm publish
const VerPub = require('verpub');
const verpub = new VerPub(options);
verpub.publish();