From b69e753901d324c79722ab1f029b90bf3ff65f3e Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Mon, 29 Dec 2025 01:59:03 +0900 Subject: [PATCH 1/2] docs(prepare): add all source files to sources --- docs/dev-tools/prepare.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/dev-tools/prepare.md b/docs/dev-tools/prepare.md index 69e249be00..72306613c1 100644 --- a/docs/dev-tools/prepare.md +++ b/docs/dev-tools/prepare.md @@ -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. From 99c4f3408f4fb48cdc162887d05f4801943f3946 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 17:02:43 +0000 Subject: [PATCH 2/2] [autofix.ci] apply automated fixes --- docs/dev-tools/prepare.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/dev-tools/prepare.md b/docs/dev-tools/prepare.md index 72306613c1..0daa5e32a8 100644 --- a/docs/dev-tools/prepare.md +++ b/docs/dev-tools/prepare.md @@ -53,18 +53,18 @@ disable = ["npm"] mise includes built-in providers for common package managers: -| 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` | +| 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` | +| `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.