Files
hub-monorepo/turbo.json
Sanjay 5199f66ea0 chore: Post migration changes (#1560)
* 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
2023-11-08 16:56:54 -08:00

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"]
}