@4yi/cli 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4yi/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "4YI command-line launcher for OAuth login and OpenCode runtime",
5
5
  "type": "module",
6
6
  "bin": {
package/src/config.mjs CHANGED
@@ -2,7 +2,7 @@ import fs from "node:fs";
2
2
  import os from "node:os";
3
3
  import path from "node:path";
4
4
 
5
- export const DEFAULT_BASE_URL = "https://app.4yi.ai";
5
+ export const DEFAULT_BASE_URL = "https://xclaw-dev.bieases.com";
6
6
 
7
7
  export function normalizeBaseUrl(value) {
8
8
  return String(value || DEFAULT_BASE_URL).replace(/\/+$/, "");