mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
36 lines
880 B
JSON
36 lines
880 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"globalEnv": ["CI", "NEXT_CI_RUNNER"],
|
|
"globalPassThroughEnv": ["RUSTC_WRAPPER", "SCCACHE_*"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^dev"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"storybook": {},
|
|
"build-storybook": {
|
|
"dependsOn": ["^build-storybook"],
|
|
"outputs": ["storybook-static/**"]
|
|
},
|
|
"test-storybook": {
|
|
"dependsOn": ["^test-storybook"]
|
|
},
|
|
"pack-for-isolated-tests": {
|
|
"inputs": ["$TURBO_DEFAULT$", "dist/**"],
|
|
"outputs": ["packed.tgz"]
|
|
},
|
|
"typescript": {},
|
|
"//#typescript": {},
|
|
"//#get-test-timings": {
|
|
"inputs": ["run-tests.js"],
|
|
"outputs": ["test-timings.json"],
|
|
"env": ["KV_REST_API_URL", "KV_REST_API_TOKEN"]
|
|
}
|
|
},
|
|
"ui": "tui"
|
|
}
|