feat: add db:seed command to package.json and update README.md for seeding reference data. Enhance job status handling in generation logic to support completed_partial status, improving error reporting and user feedback. Introduce new utility functions for job outcome resolution and non-retryable error detection, along with corresponding tests. Update database migration scripts to include new tables and fields for improved data management.
ef46e44 | { | |
| "$schema": "https://turbo.build/schema.json", | |
| "ui": "tui", | |
| "tasks": { | |
| "build": { | |
| "dependsOn": ["^build"], | |
| "inputs": ["$TURBO_DEFAULT$", ".env*"], | |
| "outputs": ["dist/**"] | |
| }, | |
| "lint": { | |
| "dependsOn": ["^lint"] | |
| }, | |
| "test": { | |
| "dependsOn": ["^test"] | |
| }, | |
| "check-types": { | |
| "dependsOn": ["^check-types"] | |
| }, | |
| "dev": { | |
| "cache": false, | |
| "persistent": true | |
| }, | |
| "db:push": { | |
| "cache": false | |
| }, | |
| "db:generate": { | |
| "cache": false | |
| }, | |
| "db:migrate": { | |
| "cache": false, | |
| "persistent": true | |
| }, | |
| "db:seed": { | |
| "cache": false | |
| }, | |
| "db:studio": { | |
| "cache": false, | |
| "persistent": true | |
| }, | |
| "db:start": { | |
| "cache": false, | |
| "persistent": true | |
| }, | |
| "db:stop": { | |
| "cache": false | |
| }, | |
| "db:watch": { | |
| "cache": false, | |
| "persistent": true | |
| }, | |
| "db:down": { | |
| "cache": false | |
| } | |
| } | |
| } | |