chore(nx): run client server automatically

This commit is contained in:
Elian Doran 2025-05-25 22:20:02 +03:00
parent aa72b6ebf6
commit cb8a08d590
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View File

@ -115,8 +115,13 @@
"serve": {
"executor": "@nx/js:node",
"dependsOn": [
{
"projects": [ "client" ],
"target": "serve"
},
"build-without-client"
],
"continuous": true,
"options": {
"buildTarget": "server:build-without-client:development",
"runBuildTargetDependencies": false

View File

@ -12,7 +12,7 @@
"server:test": "nx test server",
"server:build": "nx build server",
"server:coverage": "nx test server --coverage",
"server:start": "nx run-many --target=serve --projects=client,server --parallel",
"server:start": "nx run server:serve",
"server:start-prod": "nx run server:start-prod",
"electron:build": "nx build desktop",
"chore:ci-update-nightly-version": "tsx ./scripts/update-nightly-version.ts",