fix: exclude private web package from release build

The release script now filters out @composio/ao-web, matching the
workflow's existing exclusion and preventing a Next.js build failure
from blocking npm publishing.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Prateek 2026-02-14 20:48:10 +05:30
parent 7257650862
commit bd59f2a94d
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
"clean": "pnpm -r clean",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
"release": "pnpm -r --filter '!@composio/ao-web' build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",