Fozzie Updater
This node package is intended as a helper when updating any fozzie component
Installing
npm i -g @justeat/fozzie-updater
How to use
- Navigate to the root directory of the fozzie component
- Run
fozzie-updater
- Run the modifier commands (below) that state what changes have been made
- Performing the update with
run
when you are ready. It is advised to use the summary
command before performing run
Base Commands
run
Performs update
summary
Displays output that will be added at the top of the CHANGELOG.md
help [command...]
Provides help for a given command
exit
Exits application
Modifier Commands
added <description...>
Adds a line to the Added
changelog section
changed <description...>
Adds a line to the Changed
changelog section
fixed <description...>
Adds a line to the Changed
changelog section
removed <description...>
Adds a line to the Removed
changelog section
version <semver...>
Sets the new version of the package being updated. The minor
version is bumped up one version by default
TODO
- Create tag
- Publish to npm
- Create a release on GitHub
- Version validation
- Tests