@amodalai/amodal 0.3.31 → 0.3.33
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.33",
|
|
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/
|
|
30
|
-
"@amodalai/
|
|
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.33",
|
|
30
|
+
"@amodalai/core": "0.3.33",
|
|
31
|
+
"@amodalai/db": "0.3.33",
|
|
32
|
+
"@amodalai/runtime": "0.3.33",
|
|
33
|
+
"@amodalai/studio": "0.3.33",
|
|
34
|
+
"@amodalai/runtime-app": "0.3.33"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^20.11.24",
|
package/src/commands/dev.ts
CHANGED
|
@@ -193,7 +193,7 @@ function spawnStudio(opts: {
|
|
|
193
193
|
STUDIO_CORS_ORIGINS: `http://localhost:${String(opts.runtimePort)}`,
|
|
194
194
|
RUNTIME_URL: `http://localhost:${String(opts.runtimePort)}`,
|
|
195
195
|
PORT: String(opts.port),
|
|
196
|
-
HOSTNAME: '
|
|
196
|
+
HOSTNAME: '0.0.0.0',
|
|
197
197
|
...(opts.agentId ? {AGENT_ID: opts.agentId} : {}),
|
|
198
198
|
};
|
|
199
199
|
|
|
@@ -105,11 +105,11 @@ describe.skipIf(!!skipReason)('subprocess smoke tests', () => {
|
|
|
105
105
|
process.stderr.write(`[subprocess-smoke] ${chunk.toString()}`);
|
|
106
106
|
});
|
|
107
107
|
|
|
108
|
-
const runtimeOk = await waitForHealth(RUNTIME_PORT,
|
|
108
|
+
const runtimeOk = await waitForHealth(RUNTIME_PORT, 90_000);
|
|
109
109
|
if (!runtimeOk) {
|
|
110
|
-
throw new Error('Runtime did not start within
|
|
110
|
+
throw new Error('Runtime did not start within 90s');
|
|
111
111
|
}
|
|
112
|
-
},
|
|
112
|
+
}, 120_000);
|
|
113
113
|
|
|
114
114
|
afterAll(() => {
|
|
115
115
|
if (child) {
|