tailwindcss/turbo.json
Robin Malfait e17855b4d4
Fine-tune turbo.json config to improve cache hits (#10377)
* play with turbo configuration

* tmp: random change, let's test caches

* remove unnecessary inputs

Inputs are implicit via the `"dependsOn": ["//#build"],`

* use `inputs` instead of `outputs` for `//#style`

* Revert "tmp: random change, let's test caches"

This reverts commit 77e9be6dc41bc432bee7589f77d8b9fc02369e2a.

* remove empty `outputs` configs
2023-01-21 01:06:41 +01:00

22 lines
501 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"//#build": {
"outputs": ["lib/**", "peers/**", "types/generated/**"],
"inputs": ["src/**", "oxide/**", "nesting/**", "oxide-node-api-shim/**", "types/**"]
},
"test": {
"env": ["OXIDE"],
"dependsOn": ["//#build"]
},
"//#test": {
"env": ["OXIDE"],
"dependsOn": ["//#build"],
"inputs": ["tests/**"]
},
"//#style": {
"inputs": ["**/*.js", "**/*.ts"]
}
}
}