Merge pull request #8955 from babanesma/feat/new-clean-command

Feat/new clean command
This commit is contained in:
Kevin Sawicki 2017-03-20 10:36:19 -07:00 committed by GitHub
commit 253caf35ab
5 changed files with 54 additions and 7 deletions

View file

@ -117,6 +117,14 @@ To clean the build files:
$ npm run clean
```
To clean only `out` and `dist` directories:
```bash
$ npm run clean-build
```
**Note:** Both clean commands require running `bootstrap` again before building.
## Troubleshooting
### Error While Loading Shared Libraries: libtinfo.so.5

View file

@ -85,6 +85,14 @@ To clean the build files:
$ npm run clean
```
To clean only `out` and `dist` directories:
```bash
$ npm run clean-build
```
**Note:** Both clean commands require running `bootstrap` again before building.
## Tests
See [Build System Overview: Tests](build-system-overview.md#tests)

View file

@ -83,6 +83,14 @@ To clean the build files:
$ npm run clean
```
To clean only `out` and `dist` directories:
```bash
$ npm run clean-build
```
**Note:** Both clean commands require running `bootstrap` again before building.
## Tests
See [Build System Overview: Tests](build-system-overview.md#tests)