From 56748c75ff3ebbfec5f7a032169e0f193adfae88 Mon Sep 17 00:00:00 2001 From: jumski <9126+jumski@users.noreply.github.com> Date: Tue, 25 Nov 2025 10:27:23 +0000 Subject: [PATCH] chore: simplify verify-exports dependency to single build task (#426) Updated the `verify` target in `pkgs/client/project.json` to depend on the `build` target instead of both `build:lib` and `build:browser`. This simplifies the dependency chain for verification tasks. --- pkgs/client/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/client/project.json b/pkgs/client/project.json index 16df42cb7..85d6b696a 100644 --- a/pkgs/client/project.json +++ b/pkgs/client/project.json @@ -24,7 +24,7 @@ "cwd": "{projectRoot}", "command": "pnpm run verify-exports" }, - "dependsOn": ["build:lib", "build:browser"] + "dependsOn": ["build"] }, "build:lib": { "executor": "@nx/vite:build",