Releases: Schniz/fnm
Releases · Schniz/fnm
v1.9.1
v1.9.0
v1.8.0
v1.7.2
v1.7.1
Highlight 🔦
use-on-cd
now works with .node-version
files on Zsh, thanks to a bug that was fixed by @johnletey and reported by @MoOx. Thanks friends! This path is now fully tested
Changelog 📝
Bugfix 🐛
- #77 Fix "command not found: elsif" error (@johnletey)
Internal 🛠
Committers: 2
- Gal Schlezinger (@Schniz)
- John Letey (@johnletey)
v1.7.0
Highlight 🔦
There's a new --use-on-cd
option to fnm env
that will change Node versions automatically based on the current working directory .nvmrc
or .node-version
.
If you already have fnm
installed,
- and you use bash/zsh, you will need to change your
.zshrc
,.bashrc
or.bash_profile
:- eval `fnm env --multi` + eval "`fnm env --multi --use-on-cd`"
- and you have fish, you will need to change your
fish.config
to the following:- eval (fnm env --multi) + fnm env --multi --use-on-cd | source