Skip to content
Niek edited this page Oct 7, 2021 · 1 revision

Welcome to the typescript-todo-or-die-plugin wiki!

How to release plugin to npm

There are a few steps that need to be done to release this plugin to npm.

  1. Make sure the version in the package.json is correct.

  2. Create a tag that matches the version in the package.json

E.g. when the version to publish is: 0.5.1

Create tag:

git tag v0.5.1

Push tag:

git push --tags
  1. Create a release on GitHub.

Make sure to select the tag you just pushed and add release notes.

  1. The plugin will published to npm automatically after the release is created.
Clone this wiki locally