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