Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
5 changes: 5 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
"cache": false,
"persistent": true
},
"start": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
Comment thread
valtlfelipe marked this conversation as resolved.
"lint": {
"dependsOn": ["^build"]
},
Expand Down