mirror of
https://github.com/denoland/deno.git
synced 2025-10-04 08:04:45 +00:00
docs: fix bash code blocks tagged as ts (#11439)
This commit is contained in:
parent
4dee1fd463
commit
a23c0af5bd
1 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ usage is described below:
|
||||||
|
|
||||||
### To reload everything
|
### To reload everything
|
||||||
|
|
||||||
```ts
|
```bash
|
||||||
deno cache --reload my_module.ts
|
deno cache --reload my_module.ts
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -19,14 +19,14 @@ argument to a `--reload` flag.
|
||||||
|
|
||||||
To reload all \$STD_VERSION standard modules:
|
To reload all \$STD_VERSION standard modules:
|
||||||
|
|
||||||
```ts
|
```bash
|
||||||
deno cache --reload=https://deno.land/std@$STD_VERSION my_module.ts
|
deno cache --reload=https://deno.land/std@$STD_VERSION my_module.ts
|
||||||
```
|
```
|
||||||
|
|
||||||
To reload specific modules (in this example - colors and file system copy) use a
|
To reload specific modules (in this example - colors and file system copy) use a
|
||||||
comma to separate URLs.
|
comma to separate URLs.
|
||||||
|
|
||||||
```ts
|
```bash
|
||||||
deno cache --reload=https://deno.land/std@$STD_VERSION/fs/copy.ts,https://deno.land/std@$STD_VERSION/fmt/colors.ts my_module.ts
|
deno cache --reload=https://deno.land/std@$STD_VERSION/fs/copy.ts,https://deno.land/std@$STD_VERSION/fmt/colors.ts my_module.ts
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue