43088759cf
Two related bugs in the Gitea issue body: 1. Attachments were always plain bullet links (`- url`), even for images — so they never rendered as a preview in the Gitea issue, just a clickable URL. Image content-types now use markdown image embed (``). 2. The admin "Create Gitea issue" retry action built its own body from scratch (`ticket.description` only) and never queried attachments at all — a retry always lost them, regardless of point 1's fix. Extracted buildGiteaIssueBody() to lib/gitea.ts so both the initial ticket-creation path and the retry path share one body-building implementation instead of two independent (and inevitably diverging) ones. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
24 lines
632 B
JSON
24 lines
632 B
JSON
{
|
|
"name": "epicure",
|
|
"version": "0.51.6",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "pnpm --filter web dev",
|
|
"build": "pnpm --filter web build",
|
|
"lint": "pnpm -r lint",
|
|
"typecheck": "pnpm -r typecheck",
|
|
"db:generate": "pnpm --filter @epicure/db generate",
|
|
"db:migrate": "pnpm --filter @epicure/db migrate",
|
|
"db:seed": "pnpm --filter @epicure/db seed",
|
|
"db:backfill-usernames": "pnpm --filter @epicure/db backfill-usernames",
|
|
"db:studio": "pnpm --filter @epicure/db studio"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=22",
|
|
"pnpm": ">=11"
|
|
}
|
|
}
|