@gridland/demo 0.2.43 → 0.2.45
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/run.js +3 -8
- package/package.json +2 -2
package/dist/run.js
CHANGED
|
@@ -18,15 +18,10 @@ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
|
18
18
|
import "react";
|
|
19
19
|
import { createContext as createContext2 } from "react";
|
|
20
20
|
import { createElement } from "react";
|
|
21
|
-
var
|
|
22
|
-
try {
|
|
23
|
-
__BUNFFI$ = await import("bun:ffi");
|
|
24
|
-
} catch {
|
|
25
|
-
}
|
|
26
|
-
var __EXT$ = { "react": __REACT$, "bun:ffi": __BUNFFI$ };
|
|
21
|
+
var __EXT$ = { "react": __REACT$ };
|
|
27
22
|
var require2 = (id) => {
|
|
28
|
-
|
|
29
|
-
if (
|
|
23
|
+
if (__EXT$[id]) return __EXT$[id];
|
|
24
|
+
if (id === "bun:ffi" && typeof Bun !== "undefined") return __EXT$[id] = Bun.FFI;
|
|
30
25
|
throw new Error('Dynamic require of "' + id + '" is not supported');
|
|
31
26
|
};
|
|
32
27
|
if (typeof process2 === "undefined") process2 = { env: {} };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gridland/demo",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.45",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Run gridland component demos from anywhere",
|
|
6
6
|
"exports": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"test": "bun test"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@gridland/bun": "0.2.
|
|
24
|
+
"@gridland/bun": "0.2.45",
|
|
25
25
|
"figlet": "^1.10.0",
|
|
26
26
|
"react": "^19.0.0"
|
|
27
27
|
},
|