File tree 4 files changed +17
-7
lines changed
4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ The `pipe()` method can be used to redirect stdout:
110
110
await $` cat file.txt` .pipe (process .stdout )
111
111
```
112
112
113
- Read more about [ pipelines] ( examples /pipelines.md) .
113
+ Read more about [ pipelines] ( docs /pipelines.md) .
114
114
115
115
#### ` ProcessOutput `
116
116
@@ -343,10 +343,10 @@ module.
343
343
#### Markdown scripts
344
344
345
345
The ` zx ` can execute scripts written in markdown
346
- ([examples /markdown.md](examples /markdown.md)):
346
+ ([docs /markdown.md](docs /markdown.md)):
347
347
348
348
` ` ` bash
349
- zx examples / markdown .md
349
+ zx docs / markdown .md
350
350
` ` `
351
351
352
352
#### TypeScript scripts
Original file line number Diff line number Diff line change 1
1
# Markdown Scripts
2
2
3
3
It's possible to write scripts using markdown. Only code blocks will be executed
4
- by zx. Try to run ` zx examples/markdown.md ` .
4
+ by zx.
5
+
6
+ > You can run this markdown file:
7
+ >
8
+ > ```
9
+ > zx docs/markdown.md
10
+ > ```
5
11
6
12
```js
7
13
await $`whoami`
Original file line number Diff line number Diff line change 1
1
# Pipelines
2
2
3
- > You can run this markdown file: ` zx examples/pipelines.md `
3
+ > You can run this markdown file:
4
+ >
5
+ > ```
6
+ > zx docs/pipelines.md
7
+ > ```
4
8
5
9
The `zx` supports Node.js streams and special `pipe()` method can be used to
6
10
redirect stdout.
Original file line number Diff line number Diff line change @@ -90,15 +90,15 @@ import path from 'path'
90
90
}
91
91
92
92
{ // Markdown scripts are working
93
- await $ `node zx.mjs examples /markdown.md`
93
+ await $ `node zx.mjs docs /markdown.md`
94
94
}
95
95
96
96
{ // TypeScript scripts are working
97
97
await $ `node zx.mjs tests/typescript.ts`
98
98
}
99
99
100
100
{ // Quiet mode is working
101
- let { stdout} = await $ `node zx.mjs --quiet examples /markdown.md`
101
+ let { stdout} = await $ `node zx.mjs --quiet docs /markdown.md`
102
102
assert ( ! stdout . includes ( 'whoami' ) )
103
103
}
104
104
You can’t perform that action at this time.
0 commit comments