summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-07-19 06:28:58 +0800
committerGitHub <noreply@github.com>2021-07-19 00:28:58 +0200
commit4dee1fd46327206ec8720927fd81615d9cb54b6a (patch)
treeff75e7b6e167a7ec6824981b5dc430a6294c38a1
parent3d3bb1e65ce0b0be1b044dc76b0b4aa89871975f (diff)
docs: tag bundler code blocks as bash (#11440)
-rw-r--r--docs/tools/bundler.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tools/bundler.md b/docs/tools/bundler.md
index 87cd17817..10df9c8bb 100644
--- a/docs/tools/bundler.md
+++ b/docs/tools/bundler.md
@@ -3,8 +3,8 @@
`deno bundle [URL]` will output a single JavaScript file, which includes all
dependencies of the specified input. For example:
-```
-> deno bundle https://deno.land/std@$STD_VERSION/examples/colors.ts colors.bundle.js
+```bash
+deno bundle https://deno.land/std@$STD_VERSION/examples/colors.ts colors.bundle.js
Bundle https://deno.land/std@$STD_VERSION/examples/colors.ts
Download https://deno.land/std@$STD_VERSION/examples/colors.ts
Download https://deno.land/std@$STD_VERSION/fmt/colors.ts
@@ -15,7 +15,7 @@ If you omit the out file, the bundle will be sent to `stdout`.
The bundle can just be run as any other module in Deno would:
-```
+```bash
deno run colors.bundle.js
```