tailwindcss/turbo.json
Robin Malfait d223112162
Bump dependencies (#14160)
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.
2024-08-09 16:12:24 +02:00

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
}
}
}