How to use the release-it function in release-it

To help you get started, we’ve selected a few release-it examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github thecreation / breakpoints-js / gulp / tasks / release.js View on Github external
return function(done) {
    releaseIt(options).then(done).catch(handleErrors);
  }
}
github youzan / vant / packages / vant-cli / src / commands / release.ts View on Github external
export async function release() {
  await releaseIt({
    plugins: {
      [PLUGIN_PATH]: {}
    },
    git: {
      tagName: 'v${version}',
      commitMessage: 'chore: release ${version}'
    }
  });
}

release-it

Generic CLI tool to automate versioning and package publishing-related tasks.

MIT
Latest version published 13 days ago

Package Health Score

88 / 100
Full package analysis

Popular release-it functions