@bahulam/code 2.6.3 → 2.6.6
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/package.json +2 -2
- package/src/core/backend-url.mjs +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bahulam/code",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.6",
|
|
4
4
|
"description": "Bahulam Code \u2014 abundance, in your terminal. CLI-first, reliability-first, sub-agents, 65.6% SWE-bench Verified.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"web-tree-sitter": "^0.26.9"
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"@bahulam/runtime-darwin-arm64": "2.6.
|
|
52
|
+
"@bahulam/runtime-darwin-arm64": "2.6.6"
|
|
53
53
|
}
|
|
54
54
|
}
|
package/src/core/backend-url.mjs
CHANGED
|
@@ -28,8 +28,8 @@ BACKEND_URLS.docker = BACKEND_URLS.local; // convenience alias
|
|
|
28
28
|
|
|
29
29
|
const WEB_URLS = {
|
|
30
30
|
local: 'http://localhost:3100',
|
|
31
|
-
dev: 'https://treetop.
|
|
32
|
-
production: 'https://
|
|
31
|
+
dev: 'https://treetop.bahulam.ai',
|
|
32
|
+
production: 'https://bahulam.ai',
|
|
33
33
|
bundled: 'http://localhost:3100', // bundled mode reuses local web if user runs it
|
|
34
34
|
};
|
|
35
35
|
WEB_URLS.prod = WEB_URLS.production;
|