mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-01-14 15:47:57 -05:00
* fix: disallow empty casts (#1555) * fix: Fix peer check job not actually starting (#1559) * fix: Allow syncTrie to handle names that are substrings (#1546) * fix: Allow syncTrie to handle names that are substrings * Add migration to delete unpadded fnames from syncTrie * changeset
36 lines
660 B
JSON
36 lines
660 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["build/**", "dist/**"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"lint:ci": {
|
|
"outputs": []
|
|
},
|
|
"protoc": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["lint", "build"],
|
|
"inputs": ["src/**/*.ts"],
|
|
"outputs": []
|
|
},
|
|
"test:ci": {
|
|
"dependsOn": ["lint:ci", "build"],
|
|
"outputs": ["coverage/**"]
|
|
}
|
|
},
|
|
"globalDependencies": ["tsconfig.json"]
|
|
}
|