diff options
author | 2021-06-04 17:38:01 -0400 | |
---|---|---|
committer | 2021-06-04 16:38:01 -0500 | |
commit | 1d930ffdf437558f9b9ab1a12766bc6f9f8a4c0a (patch) | |
tree | 565c0d3be5985d539247a21bf3c7cd30d3b3f90c /docs/cli.md | |
parent | c6d3456968b71a310fdc3b030e8878d158b7691f (diff) | |
download | astro-1d930ffdf437558f9b9ab1a12766bc6f9f8a4c0a.tar.gz astro-1d930ffdf437558f9b9ab1a12766bc6f9f8a4c0a.tar.zst astro-1d930ffdf437558f9b9ab1a12766bc6f9f8a4c0a.zip |
Add verbose and reload commands (#297)
* Add verbose and reload commands
* Adds docs
* Adds a changeset
* Update witty-colts-fix.md
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
Diffstat (limited to 'docs/cli.md')
-rw-r--r-- | docs/cli.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/cli.md b/docs/cli.md index 2ef0592a5..213927277 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -20,6 +20,14 @@ The root is used for finding the Astro configuration file. astro --project-root examples/snowpack dev ``` +#### `--reload` + +Clears the cache (dependencies are built within Astro apps). + +#### `--verbose` + +Enables verbose logging, which is helpful when debugging an issue. + #### `--version` Print the Astro version number and exit. |