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.
This commit is contained in:
Chris Tate
2026-03-27 10:17:48 -07:00
committed by GitHub
parent 0f0f300d40
commit bbad2de627
+1
View File
@@ -1,3 +1,4 @@
packages:
- '.'
- 'packages/*'
- 'docs'