mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
This PR bumps dependencies We also make some dependencies `catalog:` dependencies, which allows us to keep the version in sync. E.g.: `lightningcss` and `@types/node`. Bumped `turbo` to the latest version + enabled the new UI Fixed a bug in the tests now that `lightningcss` outputs the correct value.
46 lines
1016 B
JSON
46 lines
1016 B
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",
|
|
"../core/src/**/*",
|
|
"../core/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",
|
|
"../core/src/**/*",
|
|
"../core/Cargo.toml",
|
|
"../Cargo.toml",
|
|
"../package.json"
|
|
],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"lint": {},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|