I’m getting warnings on multiple projects during deployment in the Initializing phase over my use of an .nvmrc file, all along these lines:
12:37:55 PM: mise WARN deprecated [idiomatic_version_file_enable_tools]:
12:37:55 PM: Idiomatic version files like /opt/build/repo/.nvmrc are currently enabled by default. However, this will change in mise 2025.10.0 to instead default to disabled.
12:37:55 PM: You can remove this warning by explicitly enabling idiomatic version files for node with:
12:37:55 PM: mise settings add idiomatic_version_file_enable_tools node
12:37:55 PM: You can disable idiomatic version files with:
12:37:55 PM: mise settings add idiomatic_version_file_enable_tools "[]"
12:37:55 PM: See https://github.com/jdx/mise/discussions/4345 for more information.
I imagine that removing the .nvmrc file (adding it to .gitignore) and falling back to enivorment variables to set the node version would solve this.
However my preference would be to keep the .nvmrc and stop the warnings. Because this is occurring during the initalizing period I can’t head it off by adding the suggested mise settings add ... command into my build command, is there any way of achieving this?!