diff --git a/.github/workflows/deploy-vercel-preview.yml b/.github/workflows/deploy-vercel-preview.yml index aaf4e7c2953b..65b4a15b015f 100644 --- a/.github/workflows/deploy-vercel-preview.yml +++ b/.github/workflows/deploy-vercel-preview.yml @@ -28,6 +28,8 @@ jobs: run: npm install --global vercel@latest - name: Pull Vercel Environment Information run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} + - name: Build All Projects + run: yarn turbo:command build --filter=!examples --filter=!api_refs --filter=!core_docs --filter=!create-langchain-integration - name: Build Project Artifacts run: vercel build --token=${{ secrets.VERCEL_TOKEN }} - name: Deploy Project Artifacts to Vercel diff --git a/docs/api_refs/package.json b/docs/api_refs/package.json index 0018e8982867..a646f1b147fd 100644 --- a/docs/api_refs/package.json +++ b/docs/api_refs/package.json @@ -6,8 +6,7 @@ "dev": "next dev -p 3001", "typedoc:build": "npx typedoc --options typedoc.json", "build:scripts": "node ./scripts/create-entrypoints.js && yarn typedoc:build && node ./scripts/update-typedoc-css.js", - "build:packages": "yarn turbo:command build --filter=!examples --filter=!api_refs --filter=!core_docs --filter=!create-langchain-integration", - "build": "yarn clean && yarn build:packages && yarn build:scripts && next build", + "build": "yarn clean && yarn build:scripts && next build", "start": "yarn build && next start -p 3001", "lint": "next lint", "format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",