Skip to content

Commit 35d3d9c

Browse files
authored
Watch should not mention deno compile (#1432)
1 parent 79ce70b commit 35d3d9c

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

runtime/getting_started/command_line_interface.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,17 +91,16 @@ below.
9191

9292
### Watch mode
9393

94-
You can supply the `--watch` flag to `deno run`, `deno test`, `deno compile`,
95-
and `deno fmt` to enable the built-in file watcher. The watcher enables
96-
automatic reloading of your application whenever changes are detected in the
97-
source files. This is particularly useful during development, as it allows you
98-
to see the effects of your changes immediately without manually restarting the
99-
application.
94+
You can supply the `--watch` flag to `deno run`, `deno test`, and `deno fmt` to
95+
enable the built-in file watcher. The watcher enables automatic reloading of
96+
your application whenever changes are detected in the source files. This is
97+
particularly useful during development, as it allows you to see the effects of
98+
your changes immediately without manually restarting the application.
10099

101100
The files that are watched will depend on the subcommand used:
102101

103-
- for `deno run`, `deno test`, and `deno compile` the entrypoint, and all local
104-
files that the entrypoint statically imports will be watched.
102+
- for `deno run` and `deno test` the entrypoint, and all local files that the
103+
entrypoint statically imports will be watched.
105104
- for `deno fmt` all local files and directories specified as command line
106105
arguments (or the working directory if no specific files/directories is
107106
passed) are watched.

0 commit comments

Comments
 (0)