Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A bug is a _demonstrable problem_ caused by the code in the repository. Good bug
Guidelines for bug reports:

1. **Search first** — Check if the issue has already been reported.
2. **Test latest** — Try to reproduce it using the latest `v3` branch.
2. **Test latest** — Try to reproduce it using the latest `master` branch.
3. **Isolate** — Create a minimal reproduction using [CodeSandbox](https://codesandbox.io/) or [StackBlitz](https://stackblitz.com/).

A good bug report includes:
Expand Down Expand Up @@ -61,11 +61,11 @@ Good pull requests are a fantastic help! They should remain focused and avoid un
git remote add upstream https://github.com/tomkp/react-split-pane
```

2. Create a branch from `v3`:
2. Create a branch from `master`:

```bash
git checkout v3
git pull upstream v3
git checkout master
git pull upstream master
git checkout -b my-feature
```

Expand Down Expand Up @@ -97,7 +97,7 @@ Good pull requests are a fantastic help! They should remain focused and avoid un
git commit -m "feat: add new feature"
```

9. Push and open a pull request against `v3`:
9. Push and open a pull request against `master`:

```bash
git push origin my-feature
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ Modern, accessible, TypeScript-first split pane component for React.
## Installation

```bash
npm install react-split-pane@next
npm install react-split-pane

# or
yarn add react-split-pane@next
yarn add react-split-pane

# or
pnpm add react-split-pane@next
pnpm add react-split-pane
```

## Quick Start
Expand Down