1.1.0 • Published 2 years ago

get-publish-version-info v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

get-publish-version-info

get version info after published new version

Install

yarn add -D get-publish-version-info

Usage

const { getPublishInfo } = require('get-publish-version-info');

async function postPublish() {
  const info = await getPublishInfo({
    changelogPath: 'your CHANGELOG.md file path here',
    packagePath: 'your package.json file path here',
  });

  if (info) {
    // do something
  }
}

API

TODO: