diff options
Diffstat (limited to 'docs/getting_started/command_line_interface.md')
-rw-r--r-- | docs/getting_started/command_line_interface.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/getting_started/command_line_interface.md b/docs/getting_started/command_line_interface.md index ecc431bf7..adc984971 100644 --- a/docs/getting_started/command_line_interface.md +++ b/docs/getting_started/command_line_interface.md @@ -87,6 +87,13 @@ However: There exist logical groups of flags that are shared between related subcommands. We discuss these below. +### Watch mode + +You can supply the `--watch` flag to `deno run` to enable the built in file +watcher. When Deno starts up with this flag it watches the entrypoint, and all +local files the entrypoint statically imports. Whenever one of these files is +changed on disk, the program will automatically be restarted. + ### Integrity flags Affect commands which can download resources to the cache: `deno cache`, |