From 6ad66be55ecf677bd600c5aefa36965c945c4bce Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 16 Jun 2026 07:22:08 -0700 Subject: [PATCH] chore: add Vercel CLI to the dogfood image via mise (#26411) Vercel is our vetted tool for deploying apps. Baking it into the dogfood image makes it available for both dogfood (coder.com dev) and cdrstable.dev work, without a per-workspace install. Pinned via mise's npm backend, matching the existing `@devcontainers/cli` and `@puppeteer/browsers` entries. Generated with Coder Agents on behalf of @bpmct --- mise.lock | 4 ++++ mise.toml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/mise.lock b/mise.lock index 59c0e33f6c..3a83591c55 100644 --- a/mise.lock +++ b/mise.lock @@ -967,6 +967,10 @@ url = "https://releases.hashicorp.com/terraform/1.15.5/terraform_1.15.5_windows_ checksum = "sha256:2f652dd854af7b7fbb51301afc55b5ef1d3f6e287be7889d4cc3818df891cd38" url = "https://releases.hashicorp.com/terraform/1.15.5/terraform_1.15.5_windows_amd64.zip" +[[tools.vercel]] +version = "54.14.0" +backend = "npm:vercel" + [[tools.zizmor]] version = "1.11.0" backend = "aqua:zizmorcore/zizmor" diff --git a/mise.toml b/mise.toml index a04313df54..c30c4d4109 100644 --- a/mise.toml +++ b/mise.toml @@ -71,6 +71,8 @@ lazygit = "0.61.1" # Pre-installs the binary so the upstream devcontainers-cli coder # 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" # 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"