Currently, if you've got a globally installed binary (e.g. ember-cli), and you switch Node versions, you have to also either re-pin or re-install any binaries might need. Per the docs, this can be done v0.9.0+ with
volta run --node 15 npm i -g ember-cli
It would be nice if this could be abstracted a bit into a top-level migrate command so that it'd be both more ergonomic and more discoverable from volta's help documentation.
Maybe something like volta migrate <package name> <node version>?