From 5c16fb8d6c6892e4fab119509304326da845c0e0 Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Tue, 14 Jan 2025 19:44:37 +0100 Subject: [PATCH] chore: add start command to run from source (#1928) * chore: add start command to run from source * fix: start command does not run in parallel --- .gitignore | 2 ++ package.json | 1 + 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 7e1d14c68..3d0fc5393 100644 --- a/.gitignore +++ b/.gitignore @@ -54,7 +54,9 @@ yarn-error.log* *.log apps/tasks/tasks.cjs +apps/tasks/tasks.css apps/websocket/wssServer.cjs +apps/websocket/wssServer.css apps/nextjs/.million/ packages/cli/cli.cjs diff --git a/package.json b/package.json index 601753572..8afa6d4b2 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "lint:ws": "pnpm dlx sherif@latest", "package:new": "turbo gen init", "release": "semantic-release", + "start": "concurrently \"pnpm with-env node apps/tasks/tasks.cjs\" \"pnpm with-env node apps/websocket/wssServer.cjs\" \"pnpm -F nextjs start\"", "test": "cross-env NODE_ENV=development CI=true vitest run --exclude e2e --coverage.enabled ", "test:e2e": "cross-env NODE_ENV=development CI=true vitest e2e", "test:ui": "cross-env NODE_ENV=development CI=true vitest --exclude e2e --ui --coverage.enabled",