Skip to content

Commit

Permalink
chore(mise.toml): enable npm.bun to use bun in npm backend (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
risu729 authored Nov 11, 2024
1 parent 8f3817c commit 512a624
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/list-mise-tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const tasks: {
: undefined;
switch (backend) {
case "npm": {
tools.push("node");
tools.push("bun", "node");
break;
}
case "cargo": {
Expand Down
9 changes: 6 additions & 3 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

min_version = "2024.11.5"

[settings]
experimental = true

[tools]
bun = "1.1.34"
node = "23.1.0"
Expand All @@ -32,6 +29,12 @@ yamllint = "1.35.1"
"cargo:lychee" = "0.17.0"
typos = "1.27.3"

[settings]
experimental = true

[settings.npm]
bun = true

[tasks.commit]
depends = ["buni:root"]
run = ["git add .", "bun run git-cz"]
Expand Down

0 comments on commit 512a624

Please sign in to comment.