Files
aurorabot/.pico/history/2026-04-07T11-54-44-591Z-a61ed0b2.json
syntaxbullet 8369d10bab
Some checks failed
Deploy to Production / test (push) Failing after 33s
Add auth checks for user routes and dashboard state
- tighten route authorization and schema handling
- update user route tests and server coverage
- refresh player dashboard behavior
2026-04-09 20:42:32 +02:00

7 lines
1.2 KiB
JSON

{
"timestamp": "2026-04-07T11:54:44.591Z",
"code": "import { readdir } from 'node:fs/promises';\nimport { join } from 'node:path';\n\nasync function exploreChessUI() {\n const paths = [\n 'panel/src/games/chess',\n 'bot/modules/games/chess', // checking common pattern\n 'bot/lib'\n ];\n\n for (const p of paths) {\n try {\n const files = await readdir(p, { withFileTypes: true });\n if (files.length > 0) {\n console.log(`\\nContents of ${p}:`);\n for (const f of files) {\n console.log(`${f.isDirectory() ? '[DIR] ' : '[FILE] '} ${f.name}`);\n }\n }\n } catch (e) {\n // Path doesn't exist, which is fine\n }\n }\n}\n\nexploreChessUI();\n",
"output": "\nContents of panel/src/games/chess:\n[FILE] pieces.tsx\n[FILE] ChessGame.tsx\n\nContents of bot/lib:\n[FILE] webhookUtils.ts\n[FILE] clientStats.ts\n[FILE] embeds.ts\n[FILE] clientStats.test.ts\n[FILE] db.test.ts\n[FILE] BotClient.test.ts\n[FILE] commandUtils.test.ts\n[FILE] commandUtils.ts\n[FILE] shutdown.ts\n[FILE] shutdown.test.ts\n[FILE] BotClient.ts\n[FILE] interaction.routes.ts\n[DIR] loaders\n[FILE] db.ts\n[DIR] handlers\n",
"exitCode": 0,
"durationMs": 17
}