1.0.2 • Published 3 years ago

publish-new-version v1.0.2

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

publish-package-version

A utility to publishing new version for your package, includes creating tag & release on Github and publish package to NPM

Usage

/**
 * @param {Function} callback Will be called after update new version 
 * into "package.json" and before commit+push to Github and publish to NPM
 */
publishNewVersion(callback);

Example

const publishNewVersion = require('publish-new-version');
publishNewVersion(async (logger) => {
    logger.info('Doing some thing...');
    doSomeThing();
    
    logger.info('Doing other thing...')
    await doOtherThing();
});

License

Please read at here