Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit 9f529a3

Browse files
committed
chore: bump turbo
1 parent e30160b commit 9f529a3

File tree

3 files changed

+68
-18
lines changed

3 files changed

+68
-18
lines changed

bun.lockb

0 Bytes
Binary file not shown.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"eslint-define-config": "^2.1.0",
4646
"lightningcss": "^1.22.1",
4747
"prettier": "3.2.2",
48-
"turbo": "^1.11.3",
48+
"turbo": "^1.12.0",
4949
"typescript": "^5.3.3",
5050
"vite": "^5.0.11",
5151
"vite-plugin-pwa": "^0.17.4"

turbo.json

+67-17
Original file line numberDiff line numberDiff line change
@@ -2,60 +2,110 @@
22
"$schema": "https://turbo.build/schema.json",
33
"pipeline": {
44
"build": {
5-
"dependsOn": ["bundle", "typecheck", "lint", "format:check"]
5+
"dependsOn": [
6+
"bundle",
7+
"typecheck",
8+
"lint",
9+
"format:check"
10+
]
611
},
712
"bundle": {
8-
"inputs": ["src/**", "public/**", "vite.config.ts", "index.html"],
9-
"outputs": ["dist/**"]
13+
"outputs": [
14+
"dist/**"
15+
],
16+
"inputs": [
17+
"src/**",
18+
"public/**",
19+
"vite.config.ts",
20+
"index.html"
21+
]
1022
},
1123
"lint": {
12-
"inputs": ["src/**", "vite.config.ts"]
24+
"inputs": [
25+
"src/**",
26+
"vite.config.ts"
27+
]
1328
},
1429
"typecheck": {
15-
"dependsOn": ["typecheck:src", "typecheck:sw", "typecheck:extra"]
30+
"dependsOn": [
31+
"typecheck:src",
32+
"typecheck:sw",
33+
"typecheck:extra"
34+
]
1635
},
1736
"typecheck:src": {
18-
"outputs": ["node_modules/.cache/tsbuildinfo.json"],
19-
"inputs": ["src/**", "!src/sw.ts", "tsconfig.json"]
37+
"outputs": [
38+
"node_modules/.cache/tsbuildinfo.json"
39+
],
40+
"inputs": [
41+
"src/**",
42+
"!src/sw.ts",
43+
"tsconfig.json"
44+
]
2045
},
2146
"typecheck:sw": {
22-
"outputs": ["node_modules/.cache/tsbuildinfo.sw.json"],
23-
"inputs": ["src/sw.ts", "tsconfig.json"]
47+
"outputs": [
48+
"node_modules/.cache/tsbuildinfo.sw.json"
49+
],
50+
"inputs": [
51+
"src/sw.ts",
52+
"tsconfig.json"
53+
]
2454
},
2555
"typecheck:extra": {
26-
"outputs": ["node_modules/.cache/tsbuildinfo.extra.json"],
27-
"inputs": ["vite.config.ts"]
56+
"outputs": [
57+
"node_modules/.cache/tsbuildinfo.extra.json"
58+
],
59+
"inputs": [
60+
"vite.config.ts"
61+
]
2862
},
2963
"format": {
30-
"outputs": ["node_modules/.cache/prettier/**"],
64+
"outputs": [
65+
"node_modules/.cache/prettier/**"
66+
],
3167
"inputs": [
68+
"$TURBO_DEFAULT$",
3269
"**/*.html",
3370
"**/*.ts",
3471
"**/*.md",
3572
"**/*.json",
3673
"**/*.js",
3774
"**/*.css",
38-
".prettierc"
75+
".prettierc",
76+
"!**/dist/**"
3977
]
4078
},
4179
"format:check": {
42-
"outputs": ["node_modules/.cache/prettier/**"],
80+
"outputs": [
81+
"node_modules/.cache/prettier/**"
82+
],
4383
"inputs": [
84+
"$TURBO_DEFAULT$",
4485
"**/*.html",
4586
"**/*.ts",
4687
"**/*.md",
4788
"tsconfig*.json",
4889
"turbo.json",
4990
"**/*.js",
5091
"**/*.css",
51-
".prettierc"
92+
".prettierc",
93+
"!**/dist/**"
5294
]
5395
},
5496
"dev": {
5597
"cache": false,
5698
"persistent": true,
57-
"inputs": ["src/**", "public/**", "vite.config.ts", "index.html"],
58-
"outputs": ["node_modules/.vite/**", "dev-dist/**"]
99+
"outputs": [
100+
"node_modules/.vite/**",
101+
"dev-dist/**"
102+
],
103+
"inputs": [
104+
"src/**",
105+
"public/**",
106+
"vite.config.ts",
107+
"index.html"
108+
]
59109
}
60110
},
61111
"remoteCache": {

0 commit comments

Comments
 (0)