mise
mise copied to clipboard
dev tools, env vars, task runner
the completions right now only help complete things like command names and option names. Ideally you should be able to complete with something like this: ``` rtx install nodejs@18 rtx...
Just a suggestion: It could be good for visibility to add rtx to this page? https://github.com/rbenv/rbenv/wiki/Comparison-of-version-managers
Users need to know what they need on their system to compile core plugins: - [ ] node - [ ] Ruby - [ ] Go? - [ ] Python...
I find myself doing `rtx x -- ` a fair bit. Can this perhaps be simplified?
**Describe the bug** Installation of [email protected] not working as intended. Attaching the logs. [file-ruby-build-libyaml-error-log](https://gist.github.com/jazz-mobility/b0c5359e68ec4b6ea627600476c02114) **To Reproduce** Add a `.mise.toml` with these configurations. ``` [tools] ruby = '3.2' ``` **Expected behavior**...
Fixes #1376
**Describe the bug** Sources and outputs are used as inputs to "globwalk", which does a recursive search for files matching the string. There doesn't seem to be a way to...
**Describe the bug** In rtx, `.rtx.toml` had priority over `.tool-versions` files. In mise, `.tool-versions` seems to have priority. **To Reproduce** Have .rtx.toml file: ```toml [tools] sqlc = "1.21.0" ``` Have...
as the `[env]` section of config files will very likely contain secrets, there should be a way to manage/encrypt these. I have 2 rough ideas here: 1. support built-in encryption....
I have a task `a` with `sources` and `outputs`, a task `b` with `sources` and `outputs`, and a task `all` which is `depends` on `a` and `b`. If I run...