This commit is contained in:
bracesproul
2025-04-23 11:37:41 -07:00
parent b46b419ff3
commit c11bb255dd
8 changed files with 8 additions and 1 deletions
View File
+1
View File
@@ -16,6 +16,7 @@
"build": "yarn clean && tsc",
"clean": "rm -rf ./dist .turbo || true",
"format": "prettier --config .prettierrc --write \"src\" \"scripts\"",
"format:check": "prettier --config .prettierrc --check \"src\" \"scripts\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"postinstall": "yarn turbo build"
+1
View File
@@ -12,6 +12,7 @@
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --config .prettierrc --write \"src\"",
"format:check": "prettier --config .prettierrc --check \"src\"",
"eval": "vitest run --config ls.vitest.config.ts",
"eval:highlights": "yarn tsx evals/highlights.ts"
},
-1
View File
@@ -292,7 +292,6 @@ export function GraphProvider({ children }: { children: ReactNode }) {
currentThreadId = newThread.thread_id;
}
const messagesInput = {
// `messages` contains the full, unfiltered list of messages
messages: params.messages,
+1
View File
@@ -9,6 +9,7 @@
"build": "turbo build",
"turbo:command": "turbo",
"format": "turbo format",
"format:check": "turbo format:check",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix"
},
+1
View File
@@ -9,6 +9,7 @@
"build": "yarn clean && tsc",
"clean": "rm -rf ./dist .turbo || true",
"format": "prettier --config .prettierrc --write \"src\"",
"format:check": "prettier --config .prettierrc --check \"src\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
+1
View File
@@ -28,6 +28,7 @@
"build": "yarn clean && tsc",
"clean": "rm -rf ./dist .turbo || true",
"format": "prettier --config .prettierrc --write \"src\"",
"format:check": "prettier --config .prettierrc --check \"src\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
+3
View File
@@ -14,6 +14,9 @@
},
"format": {
"dependsOn": ["^format"]
},
"format:check": {
"dependsOn": ["^format:check"]
}
}
}