JonShort / npm-bumpall

Utility to bump all packages to latest
MIT License
0 stars 0 forks source link

Dry run as default #24

Closed JonShort closed 6 months ago

JonShort commented 6 months ago

Currently, running bumpall with no arguments results in packages being bumped to the latest safe version. However as developers we often want to know what a tool will do before running it.

To help facilitate this, and reduce accidental updates, I've chosen to make "dry run" the default, and make users pass in --update or -u to actually update the dependencies

image

Acknowledgements

This was suggested by @jaysc months ago