1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 15:49:44 -05:00

fix v8-flags example to manual (#3470)

This commit is contained in:
dnalborczyk 2019-12-12 00:02:07 -05:00 committed by Ry Dahl
parent c3c69aff7e
commit ef17488398

View file

@ -764,9 +764,15 @@ source /usr/local/etc/bash_completion.d/deno.bash
### V8 flags
V8 has many many internal command-line flags, that you can see with
`--v8-options`.
[It looks like this.](https://gist.github.com/ry/a610ce48cba2f0225f9c81a5a833fc87)
V8 has many many internal command-line flags.
```shell
# list available v8 flags
$ deno --v8-flags=--help
# example for applying multiple flags
$ deno --v8-flags=--expose-gc,--use-strict
```
Particularly useful ones: