@playdrop/playdrop-cli 0.15.16 → 0.15.18

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.
@@ -1,7 +1,7 @@
1
1
  {
2
- "version": "0.15.16",
2
+ "version": "0.15.18",
3
3
  "build": 1,
4
- "runtimeSdkVersion": "0.15.16",
4
+ "runtimeSdkVersion": "0.15.18",
5
5
  "runtimeSdkBuild": 1,
6
6
  "clients": {
7
7
  "all": {
@@ -45,7 +45,7 @@ function createBoxelScene(context, options = {}) {
45
45
  const nodeObjects = /* @__PURE__ */ new Map();
46
46
  const overlayHandles = [];
47
47
  const gatherNode = (nodeId) => {
48
- const node = entity.geometry.root.id === nodeId ? entity.geometry.root : (function find(current) {
48
+ const node = entity.geometry.root.id === nodeId ? entity.geometry.root : function find(current) {
49
49
  if (current.id === nodeId)
50
50
  return current;
51
51
  for (const child of current.children) {
@@ -54,7 +54,7 @@ function createBoxelScene(context, options = {}) {
54
54
  return result;
55
55
  }
56
56
  return null;
57
- })(entity.geometry.root);
57
+ }(entity.geometry.root);
58
58
  if (!node) {
59
59
  console.warn("[boxel-three] node not found", nodeId);
60
60
  return null;
@@ -1,7 +1,7 @@
1
1
  {
2
- "version": "0.15.16",
2
+ "version": "0.15.18",
3
3
  "build": 1,
4
- "runtimeSdkVersion": "0.15.16",
4
+ "runtimeSdkVersion": "0.15.18",
5
5
  "runtimeSdkBuild": 1,
6
6
  "clients": {
7
7
  "all": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playdrop/playdrop-cli",
3
- "version": "0.15.16",
3
+ "version": "0.15.18",
4
4
  "description": "Official Playdrop CLI for publishing browser games, creator apps, and AI-generated game assets on playdrop.ai",
5
5
  "homepage": "https://www.playdrop.ai",
6
6
  "repository": {