Skip to content

Commit d0731d1

Browse files
committed
fix turbo input paths
We used to list `core` instead of `oxide`, this should make sure that building Oxide works if we make changes in `oxide/`.
1 parent 165718a commit d0731d1

File tree

1 file changed

+29
-11
lines changed

1 file changed

+29
-11
lines changed

turbo.json

+29-11
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,54 @@
33
"ui": "tui",
44
"tasks": {
55
"@tailwindcss/oxide#build": {
6-
"dependsOn": ["^build"],
7-
"outputs": ["./index.d.ts", "./index.js", "./*.node"],
6+
"dependsOn": [
7+
"^build"
8+
],
9+
"outputs": [
10+
"./index.d.ts",
11+
"./index.js",
12+
"./*.node"
13+
],
814
"inputs": [
915
"./src/**/*",
1016
"./build.rs",
1117
"./package.json",
1218
"./Cargo.toml",
13-
"../core/src/**/*",
14-
"../core/Cargo.toml",
19+
"../oxide/src/**/*",
20+
"../oxide/Cargo.toml",
1521
"../Cargo.toml",
1622
"../package.json"
1723
]
1824
},
1925
"@tailwindcss/oxide#dev": {
20-
"dependsOn": ["^dev"],
21-
"outputs": ["./index.d.ts", "./index.js", "./*.node"],
26+
"dependsOn": [
27+
"^dev"
28+
],
29+
"outputs": [
30+
"./index.d.ts",
31+
"./index.js",
32+
"./*.node"
33+
],
2234
"inputs": [
2335
"./src/**/*",
2436
"./build.rs",
2537
"./package.json",
2638
"./Cargo.toml",
27-
"../core/src/**/*",
28-
"../core/Cargo.toml",
39+
"../oxide/src/**/*",
40+
"../oxide/Cargo.toml",
2941
"../Cargo.toml",
3042
"../package.json"
3143
],
3244
"cache": false,
3345
"persistent": true
3446
},
3547
"build": {
36-
"dependsOn": ["^build"],
37-
"outputs": ["dist/**"]
48+
"dependsOn": [
49+
"^build"
50+
],
51+
"outputs": [
52+
"dist/**"
53+
]
3854
},
3955
"lint": {},
4056
"dev": {
@@ -44,5 +60,7 @@
4460
},
4561
// If rustup is installed outside of the default ~/.rustup directory, we need
4662
// to pass the path through to the individual rust tasks.
47-
"globalPassThroughEnv": ["RUSTUP_HOME"]
63+
"globalPassThroughEnv": [
64+
"RUSTUP_HOME"
65+
]
4866
}

0 commit comments

Comments
 (0)