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

Update quickstart.md, added new 4th step making it 5 step documentation #2641

Closed
wants to merge 6 commits into from
Closed
Changes from 3 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
15 changes: 14 additions & 1 deletion documentation/frontend/guides/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,20 @@ you need to run this.
$ just node-install
```

4. To bring up the frontend, we have another `just` recipe. We have `just`
4. Filtering allows you to restrict commands to specific subsets of packages.
You might want to try Filtering to compile just the Openverse ESLint plugin.
Dev-Arhaan marked this conversation as resolved.
Show resolved Hide resolved

```console
$ pnpm --filter='@openverse/eslint-plugin' build
```

Or

```console
$ pnpm --F '@openverse/eslint-plugin' build
Dev-Arhaan marked this conversation as resolved.
Show resolved Hide resolved
```

5. To bring up the frontend, we have another `just` recipe. We have `just`
recipes for almost everything.

```console
Expand Down