From 5360099e5f135f3e11ca8d3d9e93124865a0e38d Mon Sep 17 00:00:00 2001 From: iCrawl Date: Sat, 13 Aug 2022 20:14:04 +0200 Subject: [PATCH] build: don't build website on ci, let vercel handle it on changes --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c112700af..c805600f3 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "A powerful library for interacting with the Discord API", "private": true, "scripts": { - "build": "yarn workspaces foreach --parallel --topological run build", + "build": "yarn workspaces foreach --exclude @discordjs/website --parallel --topological run build", "test": "yarn workspaces foreach --parallel --topological run test", "lint": "yarn workspaces foreach --parallel --topological run lint", "format": "yarn workspaces foreach --parallel --topological run format",