Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List all necessary turbo tasks for each script #575

Merged
merged 1 commit into from
Aug 14, 2024
Merged
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
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo build",
"dev": "turbo dev",
"e2e": "turbo dev e2e",
"e2e:ui": "turbo dev e2e:ui",
"build": "turbo build:deps build",
"dev": "turbo build:deps dev",
"e2e": "turbo build:deps dev e2e",
"e2e:ui": "turbo build:deps dev e2e:ui",
"lint": "turbo lint format:check",
"format": "turbo format",
"clean": "git clean -xdf && pnpm store prune",
Expand Down
5 changes: 3 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@
},
"dev": {
"persistent": true,
"dependsOn": ["^build:deps", "^dev"],
"dependsOn": ["^build:deps"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {},
"format": {},
"format:check": {},
"e2e": {
"persistent": true
"dependsOn": ["^build:deps"]
},
"e2e:ui": {
"dependsOn": ["^build:deps"],
"persistent": true
}
}
Expand Down
Loading