-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: ran prettier on project (#2732)
- Loading branch information
Showing
37 changed files
with
140 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
CHANGELOG.md | ||
.venv | ||
registry/ | ||
docs/cli | ||
docs/environments.md | ||
docs/registry.md | ||
docs/.vitepress/dist | ||
docs/public/site.webmanifest | ||
schema/mise.json.hbs | ||
tasks.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,5 +17,6 @@ The plugin to show the alias for | |
The alias to show | ||
|
||
Examples: | ||
|
||
$ mise alias get node lts-hydrogen | ||
20.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ Do not actually delete anything | |
Examples: | ||
|
||
# will uninstall specific version | ||
$ mise uninstall [email protected] | ||
$ mise uninstall [email protected] | ||
|
||
# will uninstall the current node version (if only one version is installed) | ||
$ mise uninstall node | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,11 +34,11 @@ The version will be set in `~/.config/mise/config.toml` with the following forma | |
|
||
### Supported Syntax | ||
|
||
| Description | Usage | | ||
| --------------------------------------------- | --------------------------------------------------------- | | ||
| GitHub shorthand for latest release version | `spm:tuist/tuist` | | ||
| GitHub shorthand for specific release version | `spm:tuist/[email protected]` | | ||
| GitHub url for latest release version | `spm:https://github.com/tuist/tuist.git` | | ||
| GitHub url for specific release version | `spm:https://github.com/tuist/[email protected]` | | ||
| Description | Usage | | ||
| --------------------------------------------- | ----------------------------------------------- | | ||
| GitHub shorthand for latest release version | `spm:tuist/tuist` | | ||
| GitHub shorthand for specific release version | `spm:tuist/[email protected]` | | ||
| GitHub url for latest release version | `spm:https://github.com/tuist/tuist.git` | | ||
| GitHub url for specific release version | `spm:https://github.com/tuist/[email protected]` | | ||
|
||
Other syntax may work but is unsupported and untested. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,10 @@ mise can be configured in many ways. The most typical is by `.mise.toml`, but it | |
with asdf `.tool-versions` files. It can also use idiomatic version files like `.node-version` and | ||
`.ruby-version`. See [Configuration](/configuration) for more. | ||
|
||
* Like [direnv](https://github.com/direnv/direnv) it | ||
- Like [direnv](https://github.com/direnv/direnv) it | ||
manages [environment variables](/configuration#env---arbitrary-environment-variables) for | ||
different project directories. | ||
* Like [make](https://www.gnu.org/software/make/manual/make.html) it manages [tasks](/tasks/) used | ||
- Like [make](https://www.gnu.org/software/make/manual/make.html) it manages [tasks](/tasks/) used | ||
to build and test projects. | ||
|
||
## How it works | ||
|
@@ -97,11 +97,11 @@ if you wish or you want to use a plugin not in the default registry. | |
|
||
There are many ways it can be used: | ||
|
||
* `mise install [email protected]` - install a specific version | ||
* `mise install node@20` - install the latest version matching this prefix | ||
* `mise install node` - install whatever version of node currently specified in | ||
- `mise install [email protected]` - install a specific version | ||
- `mise install node@20` - install the latest version matching this prefix | ||
- `mise install node` - install whatever version of node currently specified in | ||
.tool-versions/.mise.toml | ||
* `mise install` - install all plugins and tools | ||
- `mise install` - install all plugins and tools | ||
|
||
### `mise local|global` <Badge type="danger" text="not recommended" /> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.