Skip to content

Commit 56748c7

Browse files
committed
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.
1 parent 3fd3466 commit 56748c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/client/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"cwd": "{projectRoot}",
2525
"command": "pnpm run verify-exports"
2626
},
27-
"dependsOn": ["build:lib", "build:browser"]
27+
"dependsOn": ["build"]
2828
},
2929
"build:lib": {
3030
"executor": "@nx/vite:build",

0 commit comments

Comments
 (0)