From 1a4d0564f64dc7af0cfbb90a96bef7bd7dacf700 Mon Sep 17 00:00:00 2001 From: juan Date: Tue, 23 Jun 2026 00:14:37 -0300 Subject: [PATCH] chore(release): bump a 0.6.0 + README test-local incluye cp de @libsql MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - bump de versión en ambos package.json (0.5.0 -> 0.6.0) para el release. - README: el snippet de prueba local ahora copia @libsql/libsql al standalone (igual que release-bundles.yml), sino sqlite/libsql da 'Cannot find module'. --- README.md | 5 +++++ launcher/package.json | 2 +- package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fd77a2b..be1ae76 100644 --- a/README.md +++ b/README.md @@ -222,6 +222,11 @@ Probá el launcher localmente (sin release real) contra un bundle armado a mano: ```bash NEXT_TELEMETRY_DISABLED=1 npx next build # genera .next/standalone cp -r .next/static .next/standalone/.next/static && cp -r public .next/standalone/public +# El tracer de Next (nft) NO sigue el require dinámico `require(`@libsql/${plat}`)`, +# así que el binario nativo queda fuera del standalone. Lo copiamos a mano (igual que +# el CI en release-bundles.yml), sino SQLite/libsql rompe con "Cannot find module". +mkdir -p .next/standalone/node_modules/@libsql && cp -r node_modules/@libsql/. .next/standalone/node_modules/@libsql/ +[ -d node_modules/libsql ] && { mkdir -p .next/standalone/node_modules/libsql && cp -r node_modules/libsql/. .next/standalone/node_modules/libsql/; } tar -czf /tmp/sa.tgz -C .next/standalone . bash launcher/verify-launcher.sh /tmp/sa.tgz # E2E: arranque + datos + teardown ``` diff --git a/launcher/package.json b/launcher/package.json index 5c52a97..e25e219 100644 --- a/launcher/package.json +++ b/launcher/package.json @@ -1,6 +1,6 @@ { "name": "quick-outerbase", - "version": "0.5.0", + "version": "0.6.0", "description": "Database GUI for your terminal: pass a DATABASE_URL and `npx quick-outerbase` opens a local web UI to browse, query and edit Postgres, MySQL, SQLite, libSQL/Turso and DynamoDB. A fast, open-source Prisma Studio / Drizzle Studio / TablePlus / DbGate alternative. Community fork of Outerbase Studio (AGPL-3.0).", "license": "AGPL-3.0-only", "bin": { diff --git a/package.json b/package.json index 049c3b6..3807028 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "quick-outerbase", - "version": "0.5.0", + "version": "0.6.0", "private": true, "description": "Database GUI in your terminal: pass a DATABASE_URL and `npx quick-outerbase` opens a local web UI to browse, query and edit Postgres, MySQL, SQLite, libSQL/Turso and DynamoDB. Open-source Prisma Studio / Drizzle Studio / TablePlus / DbGate alternative. Unofficial community fork of Outerbase Studio (AGPL-3.0).", "license": "AGPL-3.0-only",