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
This repo uses Yarn 3 for all package management. Please ensure that Yarn 1.x is installed globally on your system, so that Yarn 3 will run properly inside this repo.
44
+
43
45
#### Building Redux
44
46
45
47
Running the `build` task will create a CommonJS module-per-module build, a ES Modules build and a UMD build.
46
48
47
49
```sh
48
-
npm run build
50
+
yarn build
49
51
```
50
52
51
53
### Testing and Linting
52
54
53
55
To only run linting:
54
56
55
57
```sh
56
-
npm run lint
58
+
yarn lint
57
59
```
58
60
59
61
To only run tests:
60
62
61
63
```sh
62
-
npm runtest
64
+
yarntest
63
65
```
64
66
65
67
To continuously watch and run tests, run the following:
66
68
67
69
```sh
68
-
npm run test:watch
70
+
yarn test:watch
69
71
```
70
72
71
73
### Docs
@@ -83,7 +85,7 @@ When adding a new example, please adhere to the style and format of the existing
83
85
To test the official Redux examples, run the following:
84
86
85
87
```sh
86
-
npm run examples:test
88
+
yarn examples:test
87
89
```
88
90
89
91
Not all examples have tests. If you see an example project without tests, you are very welcome to add them in a way consistent with the examples that have tests.
0 commit comments