Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docs/dev-tools/prepare.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,18 @@ disable = ["npm"]

mise includes built-in providers for common package managers:

| Provider | Lockfile | Output | Command |
| ---------- | ------------------------- | --------------------- | ------------------------------------ |
| `npm` | `package-lock.json` | `node_modules/` | `npm install` |
| `yarn` | `yarn.lock` | `node_modules/` | `yarn install` |
| `pnpm` | `pnpm-lock.yaml` | `node_modules/` | `pnpm install` |
| `bun` | `bun.lockb` or `bun.lock` | `node_modules/` | `bun install` |
| `go` | `go.mod` | `vendor/` or `go.sum` | `go mod vendor` or `go mod download` |
| `pip` | `requirements.txt` | `.venv/` | `pip install -r requirements.txt` |
| `poetry` | `poetry.lock` | `.venv/` | `poetry install` |
| `uv` | `uv.lock` | `.venv/` | `uv sync` |
| `bundler` | `Gemfile.lock` | `vendor/bundle/` | `bundle install` |
| `composer` | `composer.lock` | `vendor/` | `composer install` |
| Provider | Sources | Outputs | Command |
| ---------- | --------------------------------------- | --------------------- | ------------------------------------ |
| `npm` | `package.json`, `package-lock.json` | `node_modules/` | `npm install` |
| `yarn` | `package.json`, `yarn.lock` | `node_modules/` | `yarn install` |
| `pnpm` | `package.json`, `pnpm-lock.yaml` | `node_modules/` | `pnpm install` |
| `bun` | `package.json`, `bun.lock`, `bun.lockb` | `node_modules/` | `bun install` |
| `go` | `go.mod` | `vendor/` or `go.sum` | `go mod vendor` or `go mod download` |
| `pip` | `requirements.txt` | `.venv/` | `pip install -r requirements.txt` |
| `poetry` | `pyproject.toml`, `poetry.lock` | `.venv/` | `poetry install` |
| `uv` | `pyproject.toml`, `uv.lock` | `.venv/` | `uv sync` |
| `bundler` | `Gemfile`, `Gemfile.lock` | `vendor/bundle/` | `bundle install` |
| `composer` | `composer.json`, `composer.lock` | `vendor/` | `composer install` |

Built-in providers are only active when explicitly configured in `mise.toml` and their lockfile exists.
Copy link

Copilot AI Dec 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sentence should be updated to reflect the new "Sources" terminology used in the table above. Since the table now includes all source files (not just lockfiles), this should say "source files" instead of "lockfile". For example: "Built-in providers are only active when explicitly configured in mise.toml and their source files exist."

Suggested change
Built-in providers are only active when explicitly configured in `mise.toml` and their lockfile exists.
Built-in providers are only active when explicitly configured in `mise.toml` and their source files exist.

Copilot uses AI. Check for mistakes.

Expand Down
Loading