mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
Small fixes
This commit is contained in:
parent
e5817d7170
commit
914aef65e6
3 changed files with 10 additions and 2 deletions
|
|
@ -1,2 +1,3 @@
|
|||
BENCHMARKS_DB_PATH=file:/tmp/benchmarks.db
|
||||
OPENROUTER_API_KEY=sk-or-v1-...
|
||||
POSTHOG_API_KEY=phc_...
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@ const askExercise = async (prompt: GluegunPrompt, language: Language) => {
|
|||
type: "select",
|
||||
name: "exercise",
|
||||
message: "Which exercise?",
|
||||
choices: exercises.map((exercise) => path.basename(exercise)),
|
||||
choices: exercises.map((exercise) => path.basename(exercise)).filter((exercise) => !exercise.startsWith(".")),
|
||||
})
|
||||
|
||||
return exercise
|
||||
|
|
|
|||
|
|
@ -11,7 +11,14 @@
|
|||
"lint": "eslint src --ext ts --max-warnings=0",
|
||||
"check-types": "tsc --noEmit",
|
||||
"format": "prettier --write .",
|
||||
"db:migrate": "dotenvx run -f ../../.env -- drizzle-kit push"
|
||||
"drizzle-kit": "dotenvx run -f ../../.env -- tsx node_modules/drizzle-kit/bin.cjs",
|
||||
"db:generate": "pnpm drizzle-kit generate",
|
||||
"db:migrate": "pnpm drizzle-kit migrate",
|
||||
"db:push": "pnpm drizzle-kit push",
|
||||
"db:pull": "pnpm drizzle-kit pull",
|
||||
"db:check": "pnpm drizzle-kit check",
|
||||
"db:up": "pnpm drizzle-kit up",
|
||||
"db:studio": "pnpm drizzle-kit studio"
|
||||
},
|
||||
"dependencies": {
|
||||
"@libsql/client": "^0.14.0",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue