@satori-sh/cli 0.0.26 → 0.0.27

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 +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -365,6 +365,10 @@ ${instruction}`);
365
365
  return;
366
366
  }
367
367
  const info = await getInfoDisplay();
368
+ if (typeof globalThis.Element === "undefined") {
369
+ globalThis.Element = class Element {
370
+ };
371
+ }
368
372
  const { runInteractiveApp } = await import("./ui-OEY6KRG2.js");
369
373
  await runInteractiveApp({
370
374
  initialPrompt,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@satori-sh/cli",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "CLI tool for Satori memory server",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",