@amodalai/amodal 0.3.54 → 0.3.56
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.56",
|
|
4
4
|
"description": "Amodal CLI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"react": "^19.2.4",
|
|
28
28
|
"yargs": "^17.7.2",
|
|
29
29
|
"zod": "^4.3.6",
|
|
30
|
-
"@amodalai/types": "0.3.
|
|
31
|
-
"@amodalai/
|
|
32
|
-
"@amodalai/
|
|
33
|
-
"@amodalai/runtime": "0.3.
|
|
34
|
-
"@amodalai/studio": "0.3.
|
|
35
|
-
"@amodalai/runtime-app": "0.3.
|
|
30
|
+
"@amodalai/types": "0.3.56",
|
|
31
|
+
"@amodalai/db": "0.3.56",
|
|
32
|
+
"@amodalai/core": "0.3.56",
|
|
33
|
+
"@amodalai/runtime": "0.3.56",
|
|
34
|
+
"@amodalai/studio": "0.3.56",
|
|
35
|
+
"@amodalai/runtime-app": "0.3.56"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/node": "^20.11.24",
|
package/src/commands/dev.ts
CHANGED
|
@@ -315,10 +315,12 @@ function spawnStudio(opts: {
|
|
|
315
315
|
...(opts.adminAgentUrl ? {ADMIN_AGENT_URL: opts.adminAgentUrl} : {}),
|
|
316
316
|
};
|
|
317
317
|
|
|
318
|
-
// Pre-built server (npm install): dist-server/
|
|
319
|
-
//
|
|
320
|
-
|
|
321
|
-
|
|
318
|
+
// Pre-built server (npm install): dist-server/bin.js (the library entry
|
|
319
|
+
// dist-server/studio-server.js has no side effects on import — only the
|
|
320
|
+
// bin runner binds a port and starts LISTEN).
|
|
321
|
+
// Source mode (monorepo dev): src/server/bin.ts via tsx.
|
|
322
|
+
const prebuiltEntry = path.join(studioDir, 'dist-server', 'bin.js');
|
|
323
|
+
const sourceEntry = path.join(studioDir, 'src', 'server', 'bin.ts');
|
|
322
324
|
|
|
323
325
|
let spawnArgs: string[];
|
|
324
326
|
|