summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/vendor/REDUX_UPGRADING.md
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/shared/vendor/REDUX_UPGRADING.md')
-rw-r--r--devtools/client/shared/vendor/REDUX_UPGRADING.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/devtools/client/shared/vendor/REDUX_UPGRADING.md b/devtools/client/shared/vendor/REDUX_UPGRADING.md
new file mode 100644
index 0000000000..232c17e655
--- /dev/null
+++ b/devtools/client/shared/vendor/REDUX_UPGRADING.md
@@ -0,0 +1,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. \ No newline at end of file