@executablemd/runtime 0.5.2 → 0.6.0
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/esm/test/stubs.js +1 -1
- package/package.json +2 -2
- package/types/test/stubs.d.ts +1 -1
package/esm/test/stubs.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* yield* useStubFs({ "doc.md": "# Hello\n" });
|
|
15
15
|
* yield* useEchoExec();
|
|
16
16
|
*
|
|
17
|
-
* const execution = yield* execute({
|
|
17
|
+
* const execution = yield* execute({ path: "doc.md", stream });
|
|
18
18
|
* const output = yield* execution;
|
|
19
19
|
* });
|
|
20
20
|
* ```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@executablemd/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Runtime host APIs for executable.md documents.",
|
|
5
5
|
"homepage": "https://executable.md",
|
|
6
6
|
"repository": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@effectionx/fs": "0.3.0",
|
|
35
35
|
"@effectionx/node": "0.2.4",
|
|
36
36
|
"@effectionx/process": "0.8.1",
|
|
37
|
-
"effection": "4.1.0-alpha.
|
|
37
|
+
"effection": "4.1.0-alpha.10"
|
|
38
38
|
},
|
|
39
39
|
"_generatedBy": "dnt@dev"
|
|
40
40
|
}
|
package/types/test/stubs.d.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* yield* useStubFs({ "doc.md": "# Hello\n" });
|
|
15
15
|
* yield* useEchoExec();
|
|
16
16
|
*
|
|
17
|
-
* const execution = yield* execute({
|
|
17
|
+
* const execution = yield* execute({ path: "doc.md", stream });
|
|
18
18
|
* const output = yield* execution;
|
|
19
19
|
* });
|
|
20
20
|
* ```
|