From a3af4535976f71c430c7fa2677dbf3b89aa7fb30 Mon Sep 17 00:00:00 2001 From: serhiizghama Date: Tue, 31 Mar 2026 04:07:12 +0700 Subject: [PATCH] fix: include vercel-ai-exporter in build pipeline and workspace The package was excluded from pnpm-workspace.yaml and the build:all script, causing it to be published without a compiled dist/ directory. Consumers received an empty package after install. Re-add it to: - pnpm-workspace.yaml (workspace member) - root build / build:all scripts (remove --ignore flag) Note: CI test matrix (.github/workflows/) requires workflow scope and is left as a follow-up. Fixes #1024 --- package.json | 4 ++-- pnpm-workspace.yaml | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 94160b5dc..c4ed80771 100644 --- a/package.json +++ b/package.json @@ -61,8 +61,8 @@ "attw:all": "lerna run attw --scope @voltagent/*", "biome": "biome", "bootstrap": "lerna bootstrap", - "build": "lerna run build --ignore @voltagent/vercel-ai-exporter", - "build:all": "lerna run build --scope @voltagent/* --ignore @voltagent/vercel-ai-exporter --scope create-voltagent-app --concurrency 1", + "build": "lerna run build", + "build:all": "lerna run build --scope @voltagent/* --scope create-voltagent-app --concurrency 1", "build:example": "lerna run build --scope voltagent-basic-example", "changeset": "changeset", "clean": "lerna run clean && lerna clean --yes && rimraf node_modules", diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 16baabb6d..4b8b07903 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,6 +1,5 @@ packages: - "!archive/**" - - "!packages/vercel-ai-exporter" - "packages/*" - "examples/*" - "examples/**/*"