diff options
author | 2021-09-16 08:06:22 -0700 | |
---|---|---|
committer | 2021-09-16 08:06:22 -0700 | |
commit | cb7a957f413a9af0651266769b5a6a4a9996aafa (patch) | |
tree | 98aa0dbd5d19c8cc7787bf79c54f4dc1264e4636 /examples/snowpack/src/pages/reference/cli-command-line-interface.md | |
parent | c4634e5ea6f2c0e86216251831525497c9821daa (diff) | |
download | astro-cb7a957f413a9af0651266769b5a6a4a9996aafa.tar.gz astro-cb7a957f413a9af0651266769b5a6a4a9996aafa.tar.zst astro-cb7a957f413a9af0651266769b5a6a4a9996aafa.zip |
update examples for stackblitz (#1379)
Diffstat (limited to 'examples/snowpack/src/pages/reference/cli-command-line-interface.md')
-rw-r--r-- | examples/snowpack/src/pages/reference/cli-command-line-interface.md | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/examples/snowpack/src/pages/reference/cli-command-line-interface.md b/examples/snowpack/src/pages/reference/cli-command-line-interface.md deleted file mode 100644 index 338eee415..000000000 --- a/examples/snowpack/src/pages/reference/cli-command-line-interface.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -layout: ../../layouts/content.astro -title: Command Line API -description: The Snowpack Command Line tool's API, commands, and flags. ---- - -### Commands - -``` -$ snowpack --help - -snowpack init Create a new project config file. -snowpack dev Develop your app locally. -snowpack build Build your app for production. - -... -``` - -### Flags - -```bash -# Show helpful info -$ snowpack --help - -# Show additional debugging logs -$ snowpack --verbose - -# {devOptions: {open: 'none'}} -$ snowpack dev --open none - -# {buildOptions: {clean: true/false}} -$ snowpack build --clean -$ snowpack build --no-clean -``` - -**CLI flags will be merged with (and take priority over) your config file values.** Every config value outlined below can also be passed as a CLI flag. Additionally, Snowpack also supports the following flags: - -- **`--config [path]`** Set the path to your project config file. -- **`--help`** Show this help. -- **`--version`** Show the current version. -- **`--reload`** Clear the local cache. Useful for troubleshooting installer issues. |