Skip to content
This repository was archived by the owner on Jun 1, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (21 loc) · 857 Bytes

File metadata and controls

28 lines (21 loc) · 857 Bytes

Aliases

mise supports aliasing the versions of runtimes. One use-case for this is to define aliases for LTS versions of runtimes. For example, you may want to specify lts-hydrogen as the version for node@20.x so you can use set it with node lts-hydrogen in .tool-versions/.mise.toml.

User aliases can be created by adding an alias.<PLUGIN> section to ~/.config/mise/config.toml:

[alias.node]
my_custom_20 = '20'

Plugins can also provide aliases via a bin/list-aliases script. Here is an example showing node.js versions:

#!/usr/bin/env bash

echo "lts-hydrogen 18"
echo "lts-gallium 16"
echo "lts-fermium 14"

::: info Because this is mise-specific functionality not currently used by asdf it isn't likely to be in any plugin currently, but plugin authors can add this script without impacting asdf users. :::