Skip to content

Commit

Permalink
docs(CONTRIBUTING): --verbose and --reload CLI flags (#1055)
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m authored Sep 15, 2020
1 parent 86af05c commit f747013
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ You can run your local snowpack by path
```bash
yarn build
cd path/to/some-other-project
/path/to/snowpack/pkg/dist-node/index.bin.js dev
/path/to/snowpack/pkg/dist-node/index.bin.js dev --verbose --reload
```

Or by linking the global `snowpack` library to your local clone
Expand All @@ -59,9 +59,11 @@ Or by linking the global `snowpack` library to your local clone
cd pkg
npm link
cd path/to/some-other-project
snowpack dev
snowpack dev --verbose --reload
```

The `--verbose` flag enables additional logs which will help to identify the source of a problem. The `--reload` will clear the local cache which might have been created by a different `snowpack` version. Learn more about [Snowpack's CLI flags](https://www.snowpack.dev/#cli-flags).

## Discussion

[Join the Pika Discord](https://discord.gg/rS8SnRk)

1 comment on commit f747013

@vercel
Copy link

@vercel vercel bot commented on f747013 Sep 15, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.