Skip to content

Commit

Permalink
Highlight npm run watch (approved in #9)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdmondChuiHW authored Mar 6, 2024
1 parent 8cc6f78 commit e43a79a
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,25 @@ This repository is a fork of [ChromeDevTools/devtools-frontend](https://github.c
source setup.sh
```

### Build and run
### Build-and-run options

```sh
npm run build
# or npm run build-release
```
1. Build continuously with a file watcher:

```sh
npm run watch
```

1. Build with the default config once:

```sh
npm run build
```

1. Build with the release config once:

```sh
npm run build-release
```

This can then be served from a static web server to test locally:

Expand Down

0 comments on commit e43a79a

Please sign in to comment.