From 64844b558949fae67925e8a50e987d5f14d37914 Mon Sep 17 00:00:00 2001 From: gRoussac Date: Wed, 30 Oct 2024 13:53:16 +0100 Subject: [PATCH] Remove nx cloud --- www/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/package.json b/www/package.json index 75918dc..bc9cbe9 100644 --- a/www/package.json +++ b/www/package.json @@ -8,8 +8,8 @@ "start": "npm run start:dev", "start:dev": "nx run-many --target=serve --projects=api,frontend --parallel", "start:prod": "nx run-many --target=serve --projects=api,frontend --parallel --configuration=production", - "build": "nx run-many --target=build --projects=api,frontend --parallel", - "test": "nx run-many --target=test --all --parallel", + "build": "nx run-many --target=build --projects=api,frontend --parallel --cloud=false", + "test": "nx run-many --target=test --all --parallel --cloud=false", "serve:api": "node dist/apps/api/main.js", "serve": "node dist/server.js & node dist/apps/api/main.js", "e2e": "nx run api:serve & nx run frontend-e2e:e2e --skip-nx-cache && killall node",