v9.18.0
Release Notes
From #1033
Install @auto-it/exec to easily run bash scripts during the auto release pipeline! Right now it doesn't handle every hook in auto but it exposes enough to quickly write plugins.
Here is an example of a super light weight version of the npm and gh-pages plugins (Note: This misses out on a lot of features that are in the official plugins)
{
"plugins": [
[
"exec",
{
"version": "npm version $ARG_0",
"publish": "npm publish && git push --tags",
"afterRelease": "yarn docs && push-dir --dir=docs --branch=gh-pages"
}
]
// other plugins
]
}🚀 Enhancement
@auto-it/core,@auto-it/exec,@auto-it/omit-commits- Add Exec Plugin #1033 (@hipstersmoothie)
Authors: 1
- Andrew Lisowski (@hipstersmoothie)
{ "plugins": [ [ "exec", { "afterShipIt": "echo 'Do something cool'" } ] // other plugins ] }