mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-01-28 22:48:07 -05:00
32 lines
600 B
JSON
32 lines
600 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["build/**", "dist/**"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"protoc": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["lint", "build"],
|
|
"inputs": ["src/**/*.ts"],
|
|
"outputs": []
|
|
},
|
|
"test:ci": {
|
|
"dependsOn": ["lint", "build"],
|
|
"outputs": ["coverage/**"]
|
|
}
|
|
},
|
|
"globalDependencies": ["tsconfig.json", ".eslintrc.cjs"]
|
|
}
|