Skip to content

Commit 27e50bc

Browse files
committed
Move *.md files to docs/
1 parent 2f4f568 commit 27e50bc

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The `pipe()` method can be used to redirect stdout:
110110
await $`cat file.txt`.pipe(process.stdout)
111111
```
112112

113-
Read more about [pipelines](examples/pipelines.md).
113+
Read more about [pipelines](docs/pipelines.md).
114114

115115
#### `ProcessOutput`
116116

@@ -343,10 +343,10 @@ module.
343343
#### Markdown scripts
344344
345345
The `zx` can execute scripts written in markdown
346-
([examples/markdown.md](examples/markdown.md)):
346+
([docs/markdown.md](docs/markdown.md)):
347347
348348
```bash
349-
zx examples/markdown.md
349+
zx docs/markdown.md
350350
```
351351
352352
#### TypeScript scripts

examples/markdown.md docs/markdown.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Markdown Scripts
22

33
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+
> ```
511
612
```js
713
await $`whoami`

examples/pipelines.md docs/pipelines.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Pipelines
22

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+
> ```
48
59
The `zx` supports Node.js streams and special `pipe()` method can be used to
610
redirect stdout.

test.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@ import path from 'path'
9090
}
9191

9292
{ // Markdown scripts are working
93-
await $`node zx.mjs examples/markdown.md`
93+
await $`node zx.mjs docs/markdown.md`
9494
}
9595

9696
{ // TypeScript scripts are working
9797
await $`node zx.mjs tests/typescript.ts`
9898
}
9999

100100
{ // 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`
102102
assert(!stdout.includes('whoami'))
103103
}
104104

0 commit comments

Comments
 (0)