From bbad2de62715cda03f37b6f12a2f96f42efa3f27 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Fri, 27 Mar 2026 10:17:48 -0700 Subject: [PATCH] fix: include root package in pnpm workspace for changesets (#1053) The dashboard PR introduced pnpm-workspace.yaml but only listed packages/* and docs. Changesets could no longer find the root agent-browser package, breaking the release CI. Adding '.' makes the root a workspace package again. --- pnpm-workspace.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 59a60bd..49ddb2d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,3 +1,4 @@ packages: + - '.' - 'packages/*' - 'docs'