diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-09-27 19:46:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-28 12:46:19 +1000 |
commit | 54d897c140c5c5f294f69c8e6b87f7d169c21066 (patch) | |
tree | b70e099d76858097b0bba7add676a80d2b7efa4f /docs/tools | |
parent | 1a27c19c583fa6bd1eaaec93b513bfbac37fc53c (diff) |
docs: update deno bundle output to single line (#7734)
Diffstat (limited to 'docs/tools')
-rw-r--r-- | docs/tools/bundler.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/tools/bundler.md b/docs/tools/bundler.md index e8044facf..87cd17817 100644 --- a/docs/tools/bundler.md +++ b/docs/tools/bundler.md @@ -5,9 +5,10 @@ dependencies of the specified input. For example: ``` > deno bundle https://deno.land/std@$STD_VERSION/examples/colors.ts colors.bundle.js -Bundling "colors.bundle.js" -Emitting bundle to "colors.bundle.js" -9.2 kB emitted. +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 +Emit "colors.bundle.js" (9.83KB) ``` If you omit the out file, the bundle will be sent to `stdout`. |