From 8364466c0bb475d452ea186ad88c0a77d1575f7a Mon Sep 17 00:00:00 2001 From: Markus Ende <19502754+Markus-Ende@users.noreply.github.com> Date: Tue, 16 Apr 2024 12:17:32 +0200 Subject: [PATCH] chore: fix package scripts --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 55fa527..432e4f9 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "version": "0.0.0", "license": "MIT", "scripts": { - "start": "nx serve", - "build": "nx build", - "test": "nx test", + "start": "nx serve demo-app", + "build": "nx run-many --all --target=build --parallel", + "test": "nx run-many --all --target=test --parallel", "lint": "nx run-many --all --target=lint --fix --parallel", "prepare": "husky install", "storybook": "nx run sketch:storybook"