@jdxcode/mise-linux-arm64 2026.4.20 → 2026.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <div align="center">
2
2
 
3
3
  <h1 align="center">
4
- <a href="https://mise.jdx.dev">
4
+ <a href="https://mise.en.dev">
5
5
  <picture>
6
6
  <source media="(prefers-color-scheme: dark)" srcset="docs/public/logo-dark.svg" />
7
7
  <img src="docs/public/logo-light.svg" alt="mise" width="256" height="256" />
@@ -18,25 +18,36 @@
18
18
  <a href="https://discord.gg/mABnUDvP57"><img alt="Discord" src="https://img.shields.io/discord/1066429325269794907?style=for-the-badge&color=8B2252"></a>
19
19
  </p>
20
20
 
21
- <p><b>The front-end to your dev env</b></p>
21
+ <p><b>Dev tools, env vars, and tasks in one CLI</b></p>
22
22
 
23
23
  <p align="center">
24
- <a href="https://mise.jdx.dev/getting-started.html">Getting Started</a> •
25
- <a href="https://mise.jdx.dev">Documentation</a> •
26
- <a href="https://mise.jdx.dev/dev-tools/">Dev Tools</a> •
27
- <a href="https://mise.jdx.dev/environments/">Environments</a> •
28
- <a href="https://mise.jdx.dev/tasks/">Tasks</a>
24
+ <a href="https://mise.en.dev/getting-started.html">Getting Started</a> •
25
+ <a href="https://mise.en.dev">Documentation</a> •
26
+ <a href="https://mise.en.dev/dev-tools/">Dev Tools</a> •
27
+ <a href="https://mise.en.dev/environments/">Environments</a> •
28
+ <a href="https://mise.en.dev/tasks/">Tasks</a>
29
+ </p>
30
+
31
+ <p align="center">
32
+ Sponsored by <a href="https://37signals.com">37signals</a>.
29
33
  </p>
30
34
 
31
35
  <hr />
32
36
 
33
37
  </div>
34
38
 
39
+ > [!TIP]
40
+ > My latest project, [aube](https://aube.en.dev) just hit stable! It's the fastest Node.js package manager with strong security defaults and is compatible with npm/pnpm/yarn lockfiles!
41
+
35
42
  ## What is it?
36
43
 
37
- - Like [asdf](https://asdf-vm.com) (or [nvm](https://github.com/nvm-sh/nvm) or [pyenv](https://github.com/pyenv/pyenv) but for any language) it manages [dev tools](https://mise.jdx.dev/dev-tools/) like node, python, cmake, terraform, and [hundreds more](https://mise.jdx.dev/registry.html).
38
- - Like [direnv](https://github.com/direnv/direnv) it manages [environment variables](https://mise.jdx.dev/environments/) for different project directories.
39
- - Like [make](https://www.gnu.org/software/make/manual/make.html) it manages [tasks](https://mise.jdx.dev/tasks/) used to build and test projects.
44
+ `mise` prepares your development environment before each command runs. It keeps
45
+ project tools, environment variables, and tasks in one `mise.toml` file so new
46
+ shells, checkouts, and CI jobs all start from the same setup.
47
+
48
+ - Install and switch between [dev tools](https://mise.en.dev/dev-tools/) like node, python, cmake, terraform, and [hundreds more](https://mise.en.dev/registry.html).
49
+ - Load [environment variables](https://mise.en.dev/environments/) per project directory, including values from `.env` files and other sources.
50
+ - Define and run [tasks](https://mise.en.dev/tasks/) for building, testing, linting, and deploying projects.
40
51
 
41
52
  ## Demo
42
53
 
@@ -45,15 +56,15 @@ Note that calling `which node` gives us a real path to node, not a shim.
45
56
 
46
57
  It also shows that you can use `mise` to install and many other tools such as `jq`, `terraform`, or `go`.
47
58
 
48
- [![demo](./docs/tapes/demo.gif)](https://mise.jdx.dev/demo.html)
59
+ [![demo](./docs/tapes/demo.gif)](https://mise.en.dev/demo.html)
49
60
 
50
- See [demo transcript](https://mise.jdx.dev/demo.html).
61
+ See [demo transcript](https://mise.en.dev/demo.html).
51
62
 
52
63
  ## Quickstart
53
64
 
54
65
  ### Install mise
55
66
 
56
- See [Getting started](https://mise.jdx.dev/getting-started.html) for more options.
67
+ See [Getting started](https://mise.en.dev/getting-started.html) for more options.
57
68
 
58
69
  ```sh-session
59
70
  $ curl https://mise.run | sh
@@ -64,7 +75,7 @@ $ ~/.local/bin/mise --version
64
75
  / / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/
65
76
  /_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/
66
77
  /_/ by @jdx
67
- 2026.4.20 macos-arm64 (2026-04-24)
78
+ 2026.6.0 macos-arm64 (2026-06-03)
68
79
  ```
69
80
 
70
81
  Hook mise into your shell (pick the right one for your shell):
@@ -96,7 +107,7 @@ $ go version
96
107
  go version go1.x.x macos/arm64
97
108
  ```
98
109
 
99
- See [dev tools](https://mise.jdx.dev/dev-tools/) for more examples.
110
+ See [dev tools](https://mise.en.dev/dev-tools/) for more examples.
100
111
 
101
112
  ### Manage environment variables
102
113
 
@@ -112,7 +123,7 @@ $ echo $SOME_VAR
112
123
  bar
113
124
  ```
114
125
 
115
- Note that `mise` can also [load `.env` files](https://mise.jdx.dev/environments/#env-directives).
126
+ Note that `mise` can also [load `.env` files](https://mise.en.dev/environments/#env-directives).
116
127
 
117
128
  ### Run tasks
118
129
 
@@ -128,7 +139,7 @@ $ mise run build
128
139
  building...
129
140
  ```
130
141
 
131
- See [tasks](https://mise.jdx.dev/tasks/) for more information.
142
+ See [tasks](https://mise.en.dev/tasks/) for more information.
132
143
 
133
144
  ### Example mise project
134
145
 
@@ -173,11 +184,11 @@ mise install # install tools specified in mise.toml
173
184
  mise run deploy
174
185
  ```
175
186
 
176
- Find more examples in the [mise cookbook](https://mise.jdx.dev/mise-cookbook/).
187
+ Find more examples in the [mise cookbook](https://mise.en.dev/mise-cookbook/).
177
188
 
178
189
  ## Full Documentation
179
190
 
180
- See [mise.jdx.dev](https://mise.jdx.dev)
191
+ See [mise.en.dev](https://mise.en.dev)
181
192
 
182
193
  ## GitHub Issues & Discussions
183
194
 
@@ -193,7 +204,13 @@ Please note the following discussion categories, which match how issues are ofte
193
204
 
194
205
  ## Special Thanks
195
206
 
196
- We're grateful for Cloudflare's support through [Project Alexandria](https://www.cloudflare.com/lp/project-alexandria/).
207
+ <p>
208
+ <a href="https://namespace.so">
209
+ <img src="docs/public/namespace-logo.svg" alt="Namespace" width="64" height="64">
210
+ </a>
211
+ <br>
212
+ Thanks to <a href="https://namespace.so">Namespace</a> for providing CI services for mise.
213
+ </p>
197
214
 
198
215
  ## Contributors
199
216
 
package/bin/mise CHANGED
Binary file