@amodalai/amodal 0.3.40 → 0.3.41
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amodalai/amodal",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.41",
|
|
4
4
|
"description": "Amodal CLI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"react": "^19.2.4",
|
|
27
27
|
"yargs": "^17.7.2",
|
|
28
28
|
"zod": "^4.3.6",
|
|
29
|
-
"@amodalai/types": "0.3.
|
|
30
|
-
"@amodalai/core": "0.3.
|
|
31
|
-
"@amodalai/db": "0.3.
|
|
32
|
-
"@amodalai/runtime": "0.3.
|
|
33
|
-
"@amodalai/studio": "0.3.
|
|
34
|
-
"@amodalai/runtime-app": "0.3.
|
|
29
|
+
"@amodalai/types": "0.3.41",
|
|
30
|
+
"@amodalai/core": "0.3.41",
|
|
31
|
+
"@amodalai/db": "0.3.41",
|
|
32
|
+
"@amodalai/runtime": "0.3.41",
|
|
33
|
+
"@amodalai/studio": "0.3.41",
|
|
34
|
+
"@amodalai/runtime-app": "0.3.41"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^20.11.24",
|
package/src/commands/dev.ts
CHANGED
|
@@ -179,6 +179,7 @@ function spawnStudio(opts: {
|
|
|
179
179
|
repoPath: string;
|
|
180
180
|
agentId?: string;
|
|
181
181
|
adminAgentUrl?: string;
|
|
182
|
+
basePath?: string;
|
|
182
183
|
}): StudioSpawnResult | null {
|
|
183
184
|
const studioDir = resolveStudioDir();
|
|
184
185
|
if (!studioDir) {
|
|
@@ -197,6 +198,7 @@ function spawnStudio(opts: {
|
|
|
197
198
|
HOSTNAME: '0.0.0.0',
|
|
198
199
|
...(opts.agentId ? {AGENT_ID: opts.agentId} : {}),
|
|
199
200
|
...(opts.adminAgentUrl ? {ADMIN_AGENT_URL: opts.adminAgentUrl} : {}),
|
|
201
|
+
...(opts.basePath ? {BASE_PATH: opts.basePath} : {}),
|
|
200
202
|
};
|
|
201
203
|
|
|
202
204
|
// Pre-built server (npm install): dist-server/studio-server.js
|