@jdxcode/mise-darwin-arm64 2026.4.20 → 2026.5.18

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,32 @@
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
29
  </p>
30
30
 
31
31
  <hr />
32
32
 
33
33
  </div>
34
34
 
35
+ > [!TIP]
36
+ > 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!
37
+
35
38
  ## What is it?
36
39
 
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.
40
+ `mise` prepares your development environment before each command runs. It keeps
41
+ project tools, environment variables, and tasks in one `mise.toml` file so new
42
+ shells, checkouts, and CI jobs all start from the same setup.
43
+
44
+ - 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).
45
+ - Load [environment variables](https://mise.en.dev/environments/) per project directory, including values from `.env` files and other sources.
46
+ - Define and run [tasks](https://mise.en.dev/tasks/) for building, testing, linting, and deploying projects.
40
47
 
41
48
  ## Demo
42
49
 
@@ -45,15 +52,15 @@ Note that calling `which node` gives us a real path to node, not a shim.
45
52
 
46
53
  It also shows that you can use `mise` to install and many other tools such as `jq`, `terraform`, or `go`.
47
54
 
48
- [![demo](./docs/tapes/demo.gif)](https://mise.jdx.dev/demo.html)
55
+ [![demo](./docs/tapes/demo.gif)](https://mise.en.dev/demo.html)
49
56
 
50
- See [demo transcript](https://mise.jdx.dev/demo.html).
57
+ See [demo transcript](https://mise.en.dev/demo.html).
51
58
 
52
59
  ## Quickstart
53
60
 
54
61
  ### Install mise
55
62
 
56
- See [Getting started](https://mise.jdx.dev/getting-started.html) for more options.
63
+ See [Getting started](https://mise.en.dev/getting-started.html) for more options.
57
64
 
58
65
  ```sh-session
59
66
  $ curl https://mise.run | sh
@@ -64,7 +71,7 @@ $ ~/.local/bin/mise --version
64
71
  / / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/
65
72
  /_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/
66
73
  /_/ by @jdx
67
- 2026.4.20 macos-arm64 (2026-04-24)
74
+ 2026.5.18 macos-arm64 (2026-05-31)
68
75
  ```
69
76
 
70
77
  Hook mise into your shell (pick the right one for your shell):
@@ -96,7 +103,7 @@ $ go version
96
103
  go version go1.x.x macos/arm64
97
104
  ```
98
105
 
99
- See [dev tools](https://mise.jdx.dev/dev-tools/) for more examples.
106
+ See [dev tools](https://mise.en.dev/dev-tools/) for more examples.
100
107
 
101
108
  ### Manage environment variables
102
109
 
@@ -112,7 +119,7 @@ $ echo $SOME_VAR
112
119
  bar
113
120
  ```
114
121
 
115
- Note that `mise` can also [load `.env` files](https://mise.jdx.dev/environments/#env-directives).
122
+ Note that `mise` can also [load `.env` files](https://mise.en.dev/environments/#env-directives).
116
123
 
117
124
  ### Run tasks
118
125
 
@@ -128,7 +135,7 @@ $ mise run build
128
135
  building...
129
136
  ```
130
137
 
131
- See [tasks](https://mise.jdx.dev/tasks/) for more information.
138
+ See [tasks](https://mise.en.dev/tasks/) for more information.
132
139
 
133
140
  ### Example mise project
134
141
 
@@ -173,11 +180,11 @@ mise install # install tools specified in mise.toml
173
180
  mise run deploy
174
181
  ```
175
182
 
176
- Find more examples in the [mise cookbook](https://mise.jdx.dev/mise-cookbook/).
183
+ Find more examples in the [mise cookbook](https://mise.en.dev/mise-cookbook/).
177
184
 
178
185
  ## Full Documentation
179
186
 
180
- See [mise.jdx.dev](https://mise.jdx.dev)
187
+ See [mise.en.dev](https://mise.en.dev)
181
188
 
182
189
  ## GitHub Issues & Discussions
183
190
 
@@ -193,7 +200,13 @@ Please note the following discussion categories, which match how issues are ofte
193
200
 
194
201
  ## Special Thanks
195
202
 
196
- We're grateful for Cloudflare's support through [Project Alexandria](https://www.cloudflare.com/lp/project-alexandria/).
203
+ <p>
204
+ <a href="https://namespace.so">
205
+ <img src="docs/public/namespace-logo.svg" alt="Namespace" width="64" height="64">
206
+ </a>
207
+ <br>
208
+ Thanks to <a href="https://namespace.so">Namespace</a> for providing CI services for mise.
209
+ </p>
197
210
 
198
211
  ## Contributors
199
212
 
package/bin/mise CHANGED
Binary file