@vgai/cli 0.5.18 → 0.5.19
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/dist/index.js +5 -3
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -312111,6 +312111,8 @@ function formatJournalLine(line) {
|
|
|
312111
312111
|
return `journal: ${at} validation ${line.ok ? "ok" : "FAILED"} ${line.path}`;
|
|
312112
312112
|
case "play":
|
|
312113
312113
|
return `journal: ${at} play ${line.action}${line.name === null ? "" : ` [${line.name}]`}`;
|
|
312114
|
+
case "play-stall":
|
|
312115
|
+
return `journal: ${at} play-stall ${line.command} ${line.requestId8} after ${Math.round(line.waitedMs / 1e3)}s \u2014 ` + (line.phase === null ? "no play boot was in flight" : `stuck in "${line.phase}" for ${Math.round((line.phaseAgeMs ?? 0) / 1e3)}s`);
|
|
312114
312116
|
case "session-started":
|
|
312115
312117
|
return `journal: ${at} session-started pid ${line.pid}`;
|
|
312116
312118
|
case "project-opened":
|
|
@@ -326943,8 +326945,8 @@ function catalogDistributionDir() {
|
|
|
326943
326945
|
);
|
|
326944
326946
|
}
|
|
326945
326947
|
function cliVersion() {
|
|
326946
|
-
if ("0.5.
|
|
326947
|
-
return "0.5.
|
|
326948
|
+
if ("0.5.19") {
|
|
326949
|
+
return "0.5.19";
|
|
326948
326950
|
}
|
|
326949
326951
|
try {
|
|
326950
326952
|
const pkg = JSON.parse(readFileSync32(join39(__dirname4, "..", "package.json"), "utf8"));
|
|
@@ -326963,7 +326965,7 @@ function bakedTargetVersions() {
|
|
|
326963
326965
|
if (false)
|
|
326964
326966
|
return void 0;
|
|
326965
326967
|
try {
|
|
326966
|
-
return JSON.parse('{"@vgai/engine":"0.5.
|
|
326968
|
+
return JSON.parse('{"@vgai/engine":"0.5.19","@vgai/editor":"0.5.19","@vgai/p2p-colyseus":"0.5.19","@vgai/live":"0.5.19","@vgai/sdk":"0.5.19","@vgai/editor-sdk":"0.5.19","@vgai/cli":"0.5.19"}');
|
|
326967
326969
|
} catch {
|
|
326968
326970
|
return void 0;
|
|
326969
326971
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@vgai/cli",
|
|
3
3
|
"author": "Volter AI, Inc.",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
-
"version": "0.5.
|
|
5
|
+
"version": "0.5.19",
|
|
6
6
|
"description": "Create, open, control, validate, and playtest VGAI game projects.",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"game-engine",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@oclif/core": "^4.11.14",
|
|
42
|
-
"@vgai/editor": "0.5.
|
|
43
|
-
"@vgai/editor-sdk": "0.5.
|
|
44
|
-
"@vgai/engine": "0.5.
|
|
45
|
-
"@vgai/live": "0.5.
|
|
46
|
-
"@vgai/p2p-colyseus": "0.5.
|
|
47
|
-
"@vgai/sdk": "0.5.
|
|
42
|
+
"@vgai/editor": "0.5.19",
|
|
43
|
+
"@vgai/editor-sdk": "0.5.19",
|
|
44
|
+
"@vgai/engine": "0.5.19",
|
|
45
|
+
"@vgai/live": "0.5.19",
|
|
46
|
+
"@vgai/p2p-colyseus": "0.5.19",
|
|
47
|
+
"@vgai/sdk": "0.5.19",
|
|
48
48
|
"ink": "^7.1.0",
|
|
49
49
|
"playwright": "^1.58.2",
|
|
50
50
|
"react": "^19.2.4",
|