They are actions that will be executed every time that you release a new version of your project.
When you declare a plugin under the plugins
path at your .bumpedrc
, you are creating a step to be executed before or after you release a new version.
Plugins can be used as prereleases
and postrelease
steps interchangeably: You can put it in the step that you need it.
In all the cases, the plugin declaration is formed by the description message of the step and the plugin that you want to use.
plugins:
prerelease:
Say hello:
plugin: bumped-terminal
command: echo Hello my friend!
The rest of information, (in this example, command
) depends of the specific plugin used.
Every time that you release a new version, plugins will be executed.
Also, As you can imagine, the workflow will be:
prerelease
plugins.postrelease
plugins.Plugins are executed on series. Under the words, this means:
Name | Description |
---|---|
bumped-terminal | Executes whatever terminal command. |
bumped-changelog | Auto generates a changelog file in each bump. |
bumped-finepack | Lints your JSON Config files and keep them readables. |
bumped-http | Expose an HTTP Client to interact with API’s endpoints. |
bumped-gh-pages | Publishing files on GitHub Pages. |
SOON