Skip to content

Commit

Permalink
fix: add env var for MISE_NPM_BUN setting
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 10, 2024
1 parent 5d17c34 commit b3c57e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/components/setting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defineProps(["setting", "level"]);
Type: <code>{{ setting.type }}</code>
<span v-if="setting.optional">(optional)</span>
</li>
<li>
<li v-if="setting.env">
Env: <code>{{ setting.env }}</code>
</li>
<li>
Expand Down
1 change: 1 addition & 0 deletions settings.toml
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ This also runs in shims if the terminal is interactive.

[npm.bun]
type = "Bool"
env = "MISE_NPM_BUN"
description = "Use bun instead of npm if bun is installed and on PATH."
docs = """
If true, mise will use `bun` instead of `npm` if
Expand Down

0 comments on commit b3c57e2

Please sign in to comment.