mirror of
https://github.com/delibae/claude-prism.git
synced 2026-08-28 05:14:59 +00:00
- Fix unused imports and variables - Apply biome formatting (template literals, semicolons, line width) - Fix a11y issues (label associations, anchor content) - Fix Node.js import protocol (node:fs, node:path) - Use self.onmessage in web worker Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
645 B
JSON
28 lines
645 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [
|
|
".next/**",
|
|
"!.next/cache/**",
|
|
".wrangler/**",
|
|
"dist/**",
|
|
"src-tauri/target/**"
|
|
],
|
|
"env": ["LATEX_API_URL", "KV_REST_API_URL", "KV_REST_API_TOKEN"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**", "tests/**", "vitest.config.*"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
},
|
|
"globalEnv": [],
|
|
"globalDependencies": [".env", ".env.local"]
|
|
}
|