@tscircuit/runframe 0.0.314 → 0.0.316
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/{chunk-PC663PVG.js → chunk-TPTDESBD.js} +1 -1
- package/dist/preview.js +1 -1
- package/dist/runner.d.ts +3 -2
- package/dist/runner.js +105 -142
- package/dist/standalone-preview.min.js +1 -1
- package/dist/standalone.min.js +551 -551
- package/package.json +3 -3
package/dist/preview.js
CHANGED
package/dist/runner.d.ts
CHANGED
|
@@ -14,9 +14,10 @@ interface RunFrameProps {
|
|
|
14
14
|
*/
|
|
15
15
|
fsMap: Map<string, string> | Record<string, string>;
|
|
16
16
|
/**
|
|
17
|
-
* The entry point file that will be executed first
|
|
17
|
+
* The entry point file that will be executed first. If not provided,
|
|
18
|
+
* @tscircuit/eval will infer the entrypoint
|
|
18
19
|
*/
|
|
19
|
-
entrypoint
|
|
20
|
+
entrypoint?: string;
|
|
20
21
|
/**
|
|
21
22
|
* Whether to show a run button that controls when code executes
|
|
22
23
|
*/
|