From 2b1b20fab5a6eb32c650e2b32cba711f59ea9581 Mon Sep 17 00:00:00 2001 From: Felipe Valtl de Mello Date: Tue, 7 Apr 2026 10:09:45 -0300 Subject: [PATCH] chore: add start command --- README.md | 1 + package.json | 1 + turbo.json | 5 +++++ 3 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 5175782..9d666ce 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,7 @@ Set `BLOB_STORAGE_PROVIDER` in `.env`: | Command | Description | | ------------------ | -------------------------------- | | `pnpm dev` | Start all packages in dev mode | +| `pnpm start` | Start all packages in production | | `pnpm build` | Production build | | `pnpm typecheck` | Type-check all packages | | `pnpm lint` | Lint all packages | diff --git a/package.json b/package.json index 02a7a2d..c413fd1 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "scripts": { "dev": "turbo dev", "build": "turbo build", + "start": "turbo start", "lint": "turbo lint", "typecheck": "turbo typecheck", "db:generate": "turbo db:generate --filter=@locker/database", diff --git a/turbo.json b/turbo.json index aadb05f..55bb1d0 100644 --- a/turbo.json +++ b/turbo.json @@ -39,6 +39,11 @@ "cache": false, "persistent": true }, + "start": { + "dependsOn": ["^build"], + "cache": false, + "persistent": true + }, "lint": { "dependsOn": ["^build"] },