@jdxcode/mise 2025.11.8 → 2025.11.9
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ See [Getting started](https://mise.jdx.dev/getting-started.html) for more option
|
|
|
55
55
|
```sh-session
|
|
56
56
|
$ curl https://mise.run | sh
|
|
57
57
|
$ ~/.local/bin/mise --version
|
|
58
|
-
2025.11.
|
|
58
|
+
2025.11.9 macos-arm64 (a1b2d3e 2025-11-27)
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
Hook mise into your shell (pick the right one for your shell):
|
|
@@ -72,17 +72,17 @@ echo '~/.local/bin/mise activate pwsh | Out-String | Invoke-Expression' >> ~/.co
|
|
|
72
72
|
### Execute commands with specific tools
|
|
73
73
|
|
|
74
74
|
```sh-session
|
|
75
|
-
$ mise exec node@
|
|
76
|
-
mise node@
|
|
77
|
-
|
|
75
|
+
$ mise exec node@24 -- node -v
|
|
76
|
+
mise node@24.x.x ✓ installed
|
|
77
|
+
v24.x.x
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
### Install tools
|
|
81
81
|
|
|
82
82
|
```sh-session
|
|
83
|
-
$ mise use --global node@
|
|
83
|
+
$ mise use --global node@24 go@1
|
|
84
84
|
$ node -v
|
|
85
|
-
|
|
85
|
+
v24.x.x
|
|
86
86
|
$ go version
|
|
87
87
|
go version go1.x.x macos/arm64
|
|
88
88
|
```
|