From f0fee4f1321885b85deb357a89f7ba51d2be6e7d Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Wed, 26 Apr 2023 17:12:49 +0200 Subject: [PATCH] build: Skip examples when building all packages --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 18e0f300..30c223ed 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "license": "MIT or APACHE-2.0", "type": "module", "scripts": { - "build": "pnpm run -r --parallel --filter !plugins-workspace build", + "build": "pnpm run -r --parallel --filter !plugins-workspace --filter !\"./plugins/*/examples/**\" build", "lint": "eslint .", "format": "prettier --write .", "format-check": "prettier --check ."