File tree 8 files changed +8
-1
lines changed
8 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 16
16
"build" : " yarn clean && tsc" ,
17
17
"clean" : " rm -rf ./dist .turbo || true" ,
18
18
"format" : " prettier --config .prettierrc --write \" src\" \" scripts\" " ,
19
+ "format:check" : " prettier --config .prettierrc --check \" src\" \" scripts\" " ,
19
20
"lint" : " eslint src" ,
20
21
"lint:fix" : " eslint src --fix" ,
21
22
"postinstall" : " yarn turbo build"
Original file line number Diff line number Diff line change 12
12
"lint" : " next lint" ,
13
13
"lint:fix" : " next lint --fix" ,
14
14
"format" : " prettier --config .prettierrc --write \" src\" " ,
15
+ "format:check" : " prettier --config .prettierrc --check \" src\" " ,
15
16
"eval" : " vitest run --config ls.vitest.config.ts" ,
16
17
"eval:highlights" : " yarn tsx evals/highlights.ts"
17
18
},
Original file line number Diff line number Diff line change @@ -292,7 +292,6 @@ export function GraphProvider({ children }: { children: ReactNode }) {
292
292
currentThreadId = newThread . thread_id ;
293
293
}
294
294
295
-
296
295
const messagesInput = {
297
296
// `messages` contains the full, unfiltered list of messages
298
297
messages : params . messages ,
Original file line number Diff line number Diff line change 9
9
"build" : " turbo build" ,
10
10
"turbo:command" : " turbo" ,
11
11
"format" : " turbo format" ,
12
+ "format:check" : " turbo format:check" ,
12
13
"lint" : " turbo lint" ,
13
14
"lint:fix" : " turbo lint:fix"
14
15
},
Original file line number Diff line number Diff line change 9
9
"build" : " yarn clean && tsc" ,
10
10
"clean" : " rm -rf ./dist .turbo || true" ,
11
11
"format" : " prettier --config .prettierrc --write \" src\" " ,
12
+ "format:check" : " prettier --config .prettierrc --check \" src\" " ,
12
13
"lint" : " eslint src" ,
13
14
"lint:fix" : " eslint src --fix"
14
15
},
Original file line number Diff line number Diff line change 28
28
"build" : " yarn clean && tsc" ,
29
29
"clean" : " rm -rf ./dist .turbo || true" ,
30
30
"format" : " prettier --config .prettierrc --write \" src\" " ,
31
+ "format:check" : " prettier --config .prettierrc --check \" src\" " ,
31
32
"lint" : " eslint src" ,
32
33
"lint:fix" : " eslint src --fix"
33
34
},
Original file line number Diff line number Diff line change 14
14
},
15
15
"format" : {
16
16
"dependsOn" : [" ^format" ]
17
+ },
18
+ "format:check" : {
19
+ "dependsOn" : [" ^format:check" ]
17
20
}
18
21
}
19
22
}
You can’t perform that action at this time.
0 commit comments