You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+19-16
Original file line number
Diff line number
Diff line change
@@ -8,29 +8,28 @@ Before opening an issue, please search the [issue tracker](https://github.com/re
8
8
9
9
Please ask any general and implementation specific questions on [Stack Overflow with a Redux Toolkit tag](http://stackoverflow.com/questions/tagged/redux-toolkit?sort=votes&pageSize=50) for support.
10
10
11
-
## Development
11
+
## New Features
12
12
13
-
Visit the [Issue tracker](https://github.com/reduxjs/redux-toolkit/issues)to find a list of open issues that need attention.
13
+
Please open an issue with a proposal for a new feature or refactoring before starting on the work. We don't want you to waste your efforts on a pull request that we won't want to accept.
Visit the [Issue tracker](https://github.com/reduxjs/redux-toolkit/issues) to find a list of open issues that need attention.
20
18
21
-
Then run `yarn` from the parent directory.
19
+
### Fork the repository
22
20
23
-
### Building
21
+
Please use the GitHub UI to [fork this repository](https://github.com/reduxjs/redux-toolkit) (_read more about [Forking a repository](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo)_). Redux Toolkit has forked builds enabled in the CI, so you will see the build status of your fork's branch.
24
22
25
-
Running the `build` task will create both a CommonJS module-per-module build and a UMD build.
23
+
### Install
26
24
27
-
```
28
-
npm run build
25
+
```bash
26
+
$ cd redux-toolkit
27
+
$ yarn
29
28
```
30
29
31
-
### Testing and Linting
30
+
### Tests
32
31
33
-
To run the tests:
32
+
You can run tests for all packages with:
34
33
35
34
```
36
35
yarn test
@@ -42,11 +41,15 @@ To continuously watch and run tests, run the following:
42
41
yarn test --watch
43
42
```
44
43
45
-
### New Features
44
+
### Build
46
45
47
-
Please open an issue with a proposal for a new feature or refactoring before starting on the work. We don't want you to waste your efforts on a pull request that we won't want to accept.
46
+
You can build the packages with the following command:
47
+
48
+
```
49
+
yarn build
50
+
```
48
51
49
-
## Submitting Changes
52
+
## Git workflow / Submitting Changes
50
53
51
54
- Open a new issue in the [Issue tracker](https://github.com/reduxjs/redux-toolkit/issues).
0 commit comments