/
githubmirror
/
trpc
Обзор
Документация
Войти
/
githubmirror
/
trpc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
turbo.json
56 строк
1 KB
Alex / KATT
chore: simplify ci (#6905)
05 сен 2025, 19:09
Не верифицирован
05 сен 2025, 19:09
a7e35d3
Код
Авторство
О чём код?
{ "$schema": "https://turborepo.org/schema.json", "globalDependencies": [ ".eslintrc.config.js", "tsconfig.json", "tsconfig.build.json", "scripts/**" ], "globalEnv": [ "CI", "NODE_ENV", "DATABASE_URL", "NEXTAUTH_SECRET", "AUTH_GITHUB_ID", "AUTH_GITHUB_SECRET" ], "tasks": { "prebuild": { "cache": false }, "build": { "dependsOn": ["^build", "prebuild"], "outputs": [ ".next/**", "!.next/cache/**", "dist/**", "build/**", "docs/typedoc/**" ] }, "examples-minimal-react#build": { "outputs": ["client/dist/**", "server/dist/**"] }, "dev": { "cache": false, "persistent": true }, "lint": { "dependsOn": ["^build"], "outputs": [], "cache": true }, "lint-fix": { "cache": false }, "test-dev": { "dependsOn": ["^build"] }, "typecheck": { "dependsOn": ["^build"] }, "test-start": { "dependsOn": ["^build", "build"] } } }