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
7 changes: 6 additions & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@ lazygit = "0.61.1"
# module's `command -v devcontainer` short-circuit fires
"npm:@devcontainers/cli" = "0.87.0"
# Vercel CLI for deploying/previewing projects from dogfood workspaces.
vercel = "54.14.0"
# Restricted to Linux/macOS because mise installs this through `npm:vercel`,
# which spawns `node install.js` from cmd.exe on Windows. mise's `node` lives
# only in the shim dir at install time, so `node` is not on PATH and the
# install fails with `'node' is not recognized` (coder/internal#1596). The
# CLI is only needed in dogfood workspaces, which are Linux.
vercel = { version = "54.14.0", os = ["linux", "macos"] }
# weekly-docs uses this pinned Puppeteer browser installer to install Chrome for
# action-linkspector without resolving mutable npm metadata at runtime.
"npm:@puppeteer/browsers" = "2.13.0"
Expand Down
Loading