blob: 232c17e6555cd97e3ab7ca9d79a726655be92f30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
[//]: # (
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
)
# Upgrading redux
## Getting the Source
```bash
git clone https://github.com/reactjs/redux
cd redux
git checkout v4.0.5 # checkout the right version tag
```
## Building
```bash
npm install
npm run build
cp dist/redux.js <gecko-dev>/devtools/client/shared/vendor/redux.js
```
## Patching react-redux
- open `redux.js`
- Add the version number to the top of the file:
```
/**
* react-redux v4.0.5
*/
```
- Replace all instances of `Function('return this')()` with `globalThis`. See Bug 1473549.
|