styrby-cli 0.1.0-beta.1 → 0.1.0-beta.2
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/dist/index.js +8 -8
- package/dist/index.js.map +2 -2
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19967,8 +19967,8 @@ function buildConfig(env2) {
|
|
|
19967
19967
|
env: env2,
|
|
19968
19968
|
isDev: isDev2,
|
|
19969
19969
|
isProd: isProd2,
|
|
19970
|
-
supabaseUrl: process.env.SUPABASE_URL || supabase.url,
|
|
19971
|
-
supabaseAnonKey: process.env.SUPABASE_ANON_KEY || supabase.anonKey,
|
|
19970
|
+
supabaseUrl: process.env.SUPABASE_URL || supabase.url || PROD_SUPABASE.url,
|
|
19971
|
+
supabaseAnonKey: process.env.SUPABASE_ANON_KEY || supabase.anonKey || PROD_SUPABASE.anonKey,
|
|
19972
19972
|
apiUrl: process.env.STYRBY_API_URL || (isDev2 ? "http://localhost:3000/api" : "https://api.styrbyapp.com"),
|
|
19973
19973
|
webUrl: process.env.STYRBY_WEB_URL || (isDev2 ? "http://localhost:3000" : "https://styrbyapp.com"),
|
|
19974
19974
|
debug: process.env.STYRBY_DEBUG === "true" || process.env.DEBUG === "true" || isDev2,
|
|
@@ -19989,12 +19989,12 @@ var init_env = __esm({
|
|
|
19989
19989
|
"src/env.ts"() {
|
|
19990
19990
|
__name(detectEnvironment, "detectEnvironment");
|
|
19991
19991
|
PROD_SUPABASE = {
|
|
19992
|
-
url:
|
|
19993
|
-
anonKey:
|
|
19992
|
+
url: "https://akmtmxunjhsgldjztdtt.supabase.co",
|
|
19993
|
+
anonKey: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImFrbXRteHVuamhzZ2xkanp0ZHR0Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzAxMzkzMTYsImV4cCI6MjA4NTcxNTMxNn0.1ke6RMS0fOb_OGMQ_GSBj_vhDtN7R3K7U-du2BCsnOU"
|
|
19994
19994
|
};
|
|
19995
19995
|
DEV_SUPABASE = {
|
|
19996
|
-
url: process.env.SUPABASE_URL ||
|
|
19997
|
-
anonKey: process.env.SUPABASE_ANON_KEY ||
|
|
19996
|
+
url: process.env.SUPABASE_URL || PROD_SUPABASE.url,
|
|
19997
|
+
anonKey: process.env.SUPABASE_ANON_KEY || PROD_SUPABASE.anonKey
|
|
19998
19998
|
};
|
|
19999
19999
|
__name(buildConfig, "buildConfig");
|
|
20000
20000
|
ENV = detectEnvironment();
|
|
@@ -42568,7 +42568,7 @@ var init_package = __esm({
|
|
|
42568
42568
|
"package.json"() {
|
|
42569
42569
|
package_default = {
|
|
42570
42570
|
name: "styrby-cli",
|
|
42571
|
-
version: "0.1.0-beta.
|
|
42571
|
+
version: "0.1.0-beta.2",
|
|
42572
42572
|
description: "Mobile remote control for AI coding agents. Control Claude Code, Codex, Gemini, and OpenCode from your phone.",
|
|
42573
42573
|
author: {
|
|
42574
42574
|
name: "Steel Motion LLC",
|
|
@@ -46972,7 +46972,7 @@ var init_index = __esm({
|
|
|
46972
46972
|
"src/index.ts"() {
|
|
46973
46973
|
init_logger();
|
|
46974
46974
|
init_AgentRegistry();
|
|
46975
|
-
VERSION = "0.1.0-beta.
|
|
46975
|
+
VERSION = "0.1.0-beta.2";
|
|
46976
46976
|
__name(main, "main");
|
|
46977
46977
|
__name(handleStop2, "handleStop");
|
|
46978
46978
|
__name(handleLogs2, "handleLogs");
|