quick-outerbase 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/launcher.mjs +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,8 +36,8 @@ También podés pasar el URL por la env `DATABASE_URL`. Flags: `--port <n>` (def
|
|
|
36
36
|
## Requisitos
|
|
37
37
|
|
|
38
38
|
- **Node 20.9+** y `tar` en el PATH (Windows 10+ lo trae como `tar.exe`).
|
|
39
|
-
- Plataformas con runtime precompilado: `win32-x64`, `linux-x64
|
|
40
|
-
Para otras, corré desde el código: `npx github:joajo13/quick-outerbase --url "..."`.
|
|
39
|
+
- Plataformas con runtime precompilado: `win32-x64`, `linux-x64`.
|
|
40
|
+
Para otras (incluido macOS), corré desde el código: `npx github:joajo13/quick-outerbase --url "..."`.
|
|
41
41
|
|
|
42
42
|
## Variables de entorno útiles
|
|
43
43
|
|
package/launcher.mjs
CHANGED
|
@@ -90,12 +90,14 @@ console.log(`▶ quick-outerbase v${VERSION} → ${scheme} (${redacted})`);
|
|
|
90
90
|
// --- Plataforma → nombre del asset del release ---
|
|
91
91
|
const ARCH = process.arch; // x64 | arm64
|
|
92
92
|
const PLAT = process.platform; // win32 | linux | darwin
|
|
93
|
-
|
|
93
|
+
// Bundles precompilados: solo Linux y Windows. macOS quedó fuera a propósito
|
|
94
|
+
// (los runners de macOS alargan mucho el CI). En Mac, corré desde el código.
|
|
95
|
+
const SUPPORTED_TARGETS = new Set(["win32-x64", "linux-x64"]);
|
|
94
96
|
const target = `${PLAT}-${ARCH}`;
|
|
95
97
|
if (!SUPPORTED_TARGETS.has(target)) {
|
|
96
98
|
fail(
|
|
97
99
|
`No hay bundle precompilado para tu plataforma (${target}).\n` +
|
|
98
|
-
"Soportadas: win32-x64, linux-x64
|
|
100
|
+
"Soportadas: win32-x64, linux-x64.\n" +
|
|
99
101
|
"Alternativa: corré desde el código con `npx github:" + REPO + "`."
|
|
100
102
|
);
|
|
101
103
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quick-outerbase",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Launcher de quick-outerbase: baja un runtime precompilado y levanta una UI web local para tu DATABASE_URL (postgres/mysql/sqlite/libsql) en segundos. Fork de Outerbase Studio (AGPL-3.0).",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"bin": {
|