From b6a8711a72b36bc17a8be095872f9944ecaf4504 Mon Sep 17 00:00:00 2001
From: OZGCloud <ozgcloud@mgm-tp.com>
Date: Fri, 3 Nov 2023 14:49:37 +0100
Subject: [PATCH] OZG-4320 OZG-4488 Add target to "nx" commands
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Machts einfacher für Nx, die richtige App zu finden.
---
 goofy-client/package.json | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/goofy-client/package.json b/goofy-client/package.json
index 42016b3713..ea456bcb03 100644
--- a/goofy-client/package.json
+++ b/goofy-client/package.json
@@ -3,17 +3,17 @@
 	"version": "0.0.0",
 	"license": "MIT",
 	"scripts": {
-		"start": "nx serve --port=4300 --disable-host-check",
-		"start:debug": "nx serve --port=4300 --disable-host-check --verbose",
-		"start-for-screenreader": "nx serve --host=192.168.178.20 --port=4300 --disable-host-check --verbose",
-		"start:devbe": "nx serve --port=4300 --disable-host-check --proxy-config=proxy.dev.conf.json --verbose",
-		"build": "nx build",
+		"start": "nx run goofy:serve --port 4300 --disable-host-check",
+		"start:debug": "nx run goofy:serve --port 4300 --disable-host-check --verbose",
+		"start-for-screenreader": "nx run goofy:serve --host 192.168.178.20 --port 4300 --disable-host-check --verbose",
+		"start:devbe": "nx run goofy:serve --port 4300 --disable-host-check --proxy-config proxy.dev.conf.json --verbose",
+		"build": "nx run goofy:build",
 		"test": "nx run-many --target=test --all --parallel --maxParallel 8 --runInBand",
 		"test:cov": "jest --coverage",
 		"test:lib": "nx test ${npm_config_lib} --watchAll",
 		"test:debug:lib": "nx test ${npm_config_lib} --detectOpenHandles --watchAll",
-		"ci-build": "nx build --outputHashing=all",
-		"ci-prodBuild": "nx build --outputHashing=all --configuration production",
+		"ci-build": "nx run goofy:build --outputHashing=all",
+		"ci-prodBuild": "nx run goofy:build --outputHashing=all --configuration production",
 		"ci-test": "nx run-many --target=test --all --parallel --maxParallel 2 --runInBand --ci --testResultsProcessor='jest-sonar-reporter' --coverage",
 		"ci-sonar": "npm run sonar-scanner",
 		"lint": "nx workspace-lint && nx lint",
-- 
GitLab