Skip to content

Commit d930250

Browse files
author
Hersh Varhnei
committed
Update branch from upstream
2 parents b793afa + 686d29b commit d930250

File tree

109 files changed

+11262
-677
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+11262
-677
lines changed
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
---
2-
name: "\U0001F41BBug report"
3-
about: Something isn't working correctly.
4-
---
5-
6-
**Do you want to request a _feature_ or report a _bug_?**
7-
8-
(If this is a _usage question_, please **do not post it here**—post it on [Stack Overflow](http://stackoverflow.com/questions/tagged/redux) instead. If this is not a “feature” or a “bug”, or the phrase “How do I...?” applies, then it's probably a usage question.)
9-
10-
**What is the current behavior?**
11-
12-
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net or similar.**
13-
14-
**What is the expected behavior?**
15-
16-
**Which versions of Redux, and which browser and OS are affected by this issue? Did this work in previous versions of Redux?**
1+
---
2+
name: "\U0001F41BBug report"
3+
about: Something is wrong with Redux.
4+
---
5+
6+
**Do you want to request a _feature_ or report a _bug_?**
7+
8+
(If this is a _usage question_, please **do not post it here**—post it on [Stack Overflow](http://stackoverflow.com/questions/tagged/redux) instead. If this is not a “feature” or a “bug”, or the phrase “How do I...?” applies, then it's probably a usage question.)
9+
10+
**What is the current behavior?**
11+
12+
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net or similar.**
13+
14+
**What is the expected behavior?**
15+
16+
**Which versions of Redux, and which browser and OS are affected by this issue? Did this work in previous versions of Redux?**

.github/ISSUE_TEMPLATE/Custom.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
---
2-
name: "\U0001F914Support/Usage Question"
3-
about: For usage questions, please use Stack Overflow or Reactiflux!
4-
---
5-
6-
This is a bug tracker, not a support system. For usage questions, please use Stack Overflow or Reactiflux where there are a lot more people ready to help you out. Thanks!
7-
8-
https://stackoverflow.com/questions/tagged/redux
9-
https://www.reactiflux.com/
1+
---
2+
name: "\U0001F914Support/Usage Question"
3+
about: For usage questions, please use Stack Overflow or Reactiflux!
4+
---
5+
6+
This is a bug tracker, not a support system. For usage questions, please use Stack Overflow or Reactiflux where there are a lot more people ready to help you out. Thanks!
7+
8+
https://stackoverflow.com/questions/tagged/redux
9+
https://www.reactiflux.com/

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ dist
55
lib
66
es
77
coverage
8+
9+
website/translated_docs
10+
website/build/
11+
website/node_modules
12+
website/i18n/*

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Visit the [issue tracker](https://github.com/reduxjs/redux/issues) to find a lis
3434

3535
Fork, then clone the repo:
3636

37-
```
37+
```sh
3838
git clone https://github.com/your-username/redux.git
3939
```
4040

@@ -44,27 +44,27 @@ git clone https://github.com/your-username/redux.git
4444

4545
Running the `build` task will create a CommonJS module-per-module build, a ES Modules build and a UMD build.
4646

47-
```
47+
```sh
4848
npm run build
4949
```
5050

5151
### Testing and Linting
5252

5353
To only run linting:
5454

55-
```
55+
```sh
5656
npm run lint
5757
```
5858

5959
To only run tests:
6060

61-
```
61+
```sh
6262
npm run test
6363
```
6464

6565
To continuously watch and run tests, run the following:
6666

67-
```
67+
```sh
6868
npm run test:watch
6969
```
7070

@@ -84,7 +84,7 @@ When adding a new example, please adhere to the style and format of the existing
8484

8585
To test the official Redux examples, run the following:
8686

87-
```
87+
```sh
8888
npm run examples:test
8989
```
9090

README.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ It helps you write applications that behave consistently, run in different envir
88
You can use Redux together with [React](https://reactjs.org), or with any other view library.
99
It is tiny (2kB, including dependencies).
1010

11+
> **Note**: We are currently planning a rewrite of the Redux docs. Please take some time to **[fill out this survey on what content is most important in a docs site](https://docs.google.com/forms/d/e/1FAIpQLSfzIkY3fXZ8PrQKScYMK0YoEgALfAK2qQ0mOj1_ibKv2qDTuQ/viewform)**. Thanks!
12+
1113
[![build status](https://img.shields.io/travis/reduxjs/redux/master.svg?style=flat-square)](https://travis-ci.org/reduxjs/redux)
1214
[![npm version](https://img.shields.io/npm/v/redux.svg?style=flat-square)](https://www.npmjs.com/package/redux)
1315
[![npm downloads](https://img.shields.io/npm/dm/redux.svg?style=flat-square)](https://www.npmjs.com/package/redux)
@@ -90,7 +92,7 @@ Even if you haven't used Flux or Elm, Redux only takes a few minutes to get star
9092

9193
To install the stable version:
9294

93-
```
95+
```sh
9496
npm install --save redux
9597
```
9698

@@ -108,7 +110,7 @@ The Redux source code is written in ES2015 but we precompile both CommonJS and U
108110

109111
Most likely, you'll also need [the React bindings](https://github.com/reduxjs/react-redux) and [the developer tools](https://github.com/reduxjs/redux-devtools).
110112

111-
```
113+
```sh
112114
npm install --save react-redux
113115
npm install --save-dev redux-devtools
114116
```
@@ -215,7 +217,7 @@ The **[Building React Applications with Idiomatic Redux](https://egghead.io/cour
215217
**[Practical Redux](https://www.educative.io/collection/5687753853370368/5707702298738688/)** is a paid interactive course by Redux co-maintainer [Mark Erikson](https://twitter.com/acemarke). The course is designed to show how to apply the basic concepts of Redux to building something larger than a TodoMVC application. It includes real-world topics like:
216218

217219
- Adding Redux to a new Create-React-App project and configuring Hot Module Replacement for faster development
218-
- Controling your UI behavior with Redux
220+
- Controlling your UI behavior with Redux
219221
- Using the Redux-ORM library to manage relational data in your Redux store
220222
- Building a master/detail view to display and edit data
221223
- Writing custom advanced Redux reducer logic to solve specific problems
@@ -230,7 +232,7 @@ The course is based on Mark's original free **["Practical Redux" blog tutorial s
230232
Redux co-maintainer [Mark Erikson](https://twitter.com/acemarke) has put together a [**Redux Fundamentals workshop**, and slides are available here](https://blog.isquaredsoftware.com/2018/06/redux-fundamentals-workshop-slides/). They cover:
231233

232234
- The history and purpose of Redux
233-
- Reducers, actions, and working with a Redux store
235+
- Reducers and actions, and working with a Redux store
234236
- Using Redux with React
235237
- Using and writing Redux middleware
236238
- Working with AJAX calls and other side effects
@@ -239,14 +241,14 @@ Redux co-maintainer [Mark Erikson](https://twitter.com/acemarke) has put togethe
239241

240242
## Documentation
241243

242-
- [Introduction](http://redux.js.org/introduction/index.html)
243-
- [Basics](http://redux.js.org/basics/index.html)
244-
- [Advanced](http://redux.js.org/advanced/index.html)
245-
- [Recipes](http://redux.js.org/recipes/index.html)
246-
- [FAQ](http://redux.js.org/FAQ.html)
247-
- [Troubleshooting](http://redux.js.org/Troubleshooting.html)
248-
- [Glossary](http://redux.js.org/Glossary.html)
249-
- [API Reference](http://redux.js.org/api/index.html)
244+
- [Introduction](http://redux.js.org/introduction)
245+
- [Basics](http://redux.js.org/basics)
246+
- [Advanced](http://redux.js.org/advanced)
247+
- [Recipes](http://redux.js.org/recipes)
248+
- [FAQ](http://redux.js.org/faq)
249+
- [Troubleshooting](http://redux.js.org/troubleshooting)
250+
- [Glossary](http://redux.js.org/glossary)
251+
- [API Reference](http://redux.js.org/api)
250252

251253
For PDF, ePub, and MOBI exports for offline reading, and instructions on how to create them, please see: [paulkogel/redux-offline-docs](https://github.com/paulkogel/redux-offline-docs).
252254

@@ -260,6 +262,7 @@ Almost all examples have a corresponding CodeSandbox sandbox. This is an interac
260262
- [**Counter**](https://redux.js.org/introduction/examples#counter): [Source](https://github.com/reduxjs/redux/tree/master/examples/counter) | [Sandbox](https://codesandbox.io/s/github/reduxjs/redux/tree/master/examples/counter)
261263
- [**Todos**](https://redux.js.org/introduction/examples#todos): [Source](https://github.com/reduxjs/redux/tree/master/examples/todos) | [Sandbox](https://codesandbox.io/s/github/reduxjs/redux/tree/master/examples/todos)
262264
- [**Todos with Undo**](https://redux.js.org/introduction/examples#todos-with-undo): [Source](https://github.com/reduxjs/redux/tree/master/examples/todos-with-undo) | [Sandbox](https://codesandbox.io/s/github/reduxjs/redux/tree/master/examples/todos-with-undo)
265+
- [**Todos w/ Flow**](https://redux.js.org/introduction/examples#todos-flow): [Source](https://github.com/reduxjs/redux/tree/master/examples/todos-flow)
263266
- [**TodoMVC**](https://redux.js.org/introduction/examples#todomvc): [Source](https://github.com/reduxjs/redux/tree/master/examples/todomvc) | [Sandbox](https://codesandbox.io/s/github/reduxjs/redux/tree/master/examples/todomvc)
264267
- [**Shopping Cart**](https://redux.js.org/introduction/examples#shopping-cart): [Source](https://github.com/reduxjs/redux/tree/master/examples/shopping-cart) | [Sandbox](https://codesandbox.io/s/github/reduxjs/redux/tree/master/examples/shopping-cart)
265268
- [**Tree View**](https://redux.js.org/introduction/examples#tree-view): [Source](https://github.com/reduxjs/redux/tree/master/examples/tree-view) | [Sandbox](https://codesandbox.io/s/github/reduxjs/redux/tree/master/examples/tree-view)

0 commit comments

Comments
 (0)