Skip to content

Commit 9e46992

Browse files
committed
run prettier
1 parent d612e66 commit 9e46992

File tree

2 files changed

+9
-27
lines changed

2 files changed

+9
-27
lines changed
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "../tsconfig.base.json",
33
"compilerOptions": {
4-
"allowSyntheticDefaultImports":true
5-
}
4+
"allowSyntheticDefaultImports": true,
5+
},
66
}

turbo.json

+7-25
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,8 @@
33
"ui": "tui",
44
"tasks": {
55
"@tailwindcss/oxide#build": {
6-
"dependsOn": [
7-
"^build"
8-
],
9-
"outputs": [
10-
"./index.d.ts",
11-
"./index.js",
12-
"./*.node"
13-
],
6+
"dependsOn": ["^build"],
7+
"outputs": ["./index.d.ts", "./index.js", "./*.node"],
148
"inputs": [
159
"./src/**/*",
1610
"./build.rs",
@@ -23,14 +17,8 @@
2317
]
2418
},
2519
"@tailwindcss/oxide#dev": {
26-
"dependsOn": [
27-
"^dev"
28-
],
29-
"outputs": [
30-
"./index.d.ts",
31-
"./index.js",
32-
"./*.node"
33-
],
20+
"dependsOn": ["^dev"],
21+
"outputs": ["./index.d.ts", "./index.js", "./*.node"],
3422
"inputs": [
3523
"./src/**/*",
3624
"./build.rs",
@@ -45,12 +33,8 @@
4533
"persistent": true
4634
},
4735
"build": {
48-
"dependsOn": [
49-
"^build"
50-
],
51-
"outputs": [
52-
"dist/**"
53-
]
36+
"dependsOn": ["^build"],
37+
"outputs": ["dist/**"]
5438
},
5539
"lint": {},
5640
"dev": {
@@ -60,7 +44,5 @@
6044
},
6145
// If rustup is installed outside of the default ~/.rustup directory, we need
6246
// to pass the path through to the individual rust tasks.
63-
"globalPassThroughEnv": [
64-
"RUSTUP_HOME"
65-
]
47+
"globalPassThroughEnv": ["RUSTUP_HOME"]
6648
}

0 commit comments

Comments
 (0)