Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add entry about producing final build #384

Merged
merged 2 commits into from
Aug 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,24 @@ yarn

from your command-line at the root of this repository.

### Producing a build

By running the build command we produce the final build that is uploaded when we create a release.

```sh
yarn build
```

This build will be located in `dist/extension`.

When you want to create the build for a specific version you can use our `tags`.

```sh
git fetch --all --tags && git checkout vx.x.x && yarn && yarn build
```

This will ensure that you have the dependencies we used at that tag and produce a build.

#### Fixture environment (panel)

The easiest way to get started on a change in the devtools panel is in the fixture environment.
Expand Down