mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* 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
22 lines
501 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|