@vgai/cli 0.5.18 → 0.5.20

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -3
  2. package/package.json +7 -7
package/dist/index.js CHANGED
@@ -830,6 +830,7 @@ var init_src = __esm({
830
830
  "use strict";
831
831
  init_client();
832
832
  init_editor_view();
833
+ init_types();
833
834
  }
834
835
  });
835
836
 
@@ -312111,6 +312112,8 @@ function formatJournalLine(line) {
312111
312112
  return `journal: ${at} validation ${line.ok ? "ok" : "FAILED"} ${line.path}`;
312112
312113
  case "play":
312113
312114
  return `journal: ${at} play ${line.action}${line.name === null ? "" : ` [${line.name}]`}`;
312115
+ case "play-stall":
312116
+ 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
312117
  case "session-started":
312115
312118
  return `journal: ${at} session-started pid ${line.pid}`;
312116
312119
  case "project-opened":
@@ -326943,8 +326946,8 @@ function catalogDistributionDir() {
326943
326946
  );
326944
326947
  }
326945
326948
  function cliVersion() {
326946
- if ("0.5.18") {
326947
- return "0.5.18";
326949
+ if ("0.5.20") {
326950
+ return "0.5.20";
326948
326951
  }
326949
326952
  try {
326950
326953
  const pkg = JSON.parse(readFileSync32(join39(__dirname4, "..", "package.json"), "utf8"));
@@ -326963,7 +326966,7 @@ function bakedTargetVersions() {
326963
326966
  if (false)
326964
326967
  return void 0;
326965
326968
  try {
326966
- return JSON.parse('{"@vgai/engine":"0.5.18","@vgai/editor":"0.5.18","@vgai/p2p-colyseus":"0.5.18","@vgai/live":"0.5.18","@vgai/sdk":"0.5.18","@vgai/editor-sdk":"0.5.18","@vgai/cli":"0.5.18"}');
326969
+ return JSON.parse('{"@vgai/engine":"0.5.20","@vgai/editor":"0.5.20","@vgai/p2p-colyseus":"0.5.20","@vgai/live":"0.5.20","@vgai/sdk":"0.5.20","@vgai/editor-sdk":"0.5.20","@vgai/cli":"0.5.20"}');
326967
326970
  } catch {
326968
326971
  return void 0;
326969
326972
  }
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.18",
5
+ "version": "0.5.20",
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.18",
43
- "@vgai/editor-sdk": "0.5.18",
44
- "@vgai/engine": "0.5.18",
45
- "@vgai/live": "0.5.18",
46
- "@vgai/p2p-colyseus": "0.5.18",
47
- "@vgai/sdk": "0.5.18",
42
+ "@vgai/editor": "0.5.20",
43
+ "@vgai/editor-sdk": "0.5.20",
44
+ "@vgai/engine": "0.5.20",
45
+ "@vgai/live": "0.5.20",
46
+ "@vgai/p2p-colyseus": "0.5.20",
47
+ "@vgai/sdk": "0.5.20",
48
48
  "ink": "^7.1.0",
49
49
  "playwright": "^1.58.2",
50
50
  "react": "^19.2.4",