Command Line API
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
# 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-cleanCLI 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.
- --helpShow this help.
- --versionShow the current version.
- --reloadClear the local cache. Useful for troubleshooting installer issues.