tailwindcss/turbo.json
Philipp Spiess 9bbe2e3d08
Revert: Only expose used CSS variables (#16403)
This reverts #16211

We found some unexpected interactions with using `@apply` and CSS
variables in multi-root setups like CSS modules or Vue inline `<style>`
blocks that were broken due to that change. We plan to re-enable this
soon and include a proper fix for those scenarios.

## Test plan

- Updated snapshots
- Tested using the CLI in a new project:
<img width="1523" alt="Screenshot 2025-02-10 at 13 08 42"
src="https://github.com/user-attachments/assets/defe0858-adb3-4d61-9d2c-87166558fd68"
/>

---------

Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
2025-02-10 13:26:13 +01:00

50 lines
1.2 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"@tailwindcss/oxide#build": {
"dependsOn": ["^build"],
"outputs": ["./index.d.ts", "./index.js", "./*.node"],
"inputs": [
"./src/**/*",
"./build.rs",
"./package.json",
"./Cargo.toml",
"../oxide/src/**/*",
"../oxide/Cargo.toml",
"../Cargo.toml",
"../package.json"
]
},
"@tailwindcss/oxide#dev": {
"dependsOn": ["^dev"],
"outputs": ["./index.d.ts", "./index.js", "./*.node"],
"inputs": [
"./src/**/*",
"./build.rs",
"./package.json",
"./Cargo.toml",
"../oxide/src/**/*",
"../oxide/Cargo.toml",
"../Cargo.toml",
"../package.json"
],
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["FEATURES_ENV"]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
}
},
// If rustup is installed outside of the default ~/.rustup directory, we need
// to pass the path through to the individual rust tasks.
"globalPassThroughEnv": ["RUSTUP_HOME"]
}