diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /devtools/client/shared/vendor/REACT_REDUX_UPGRADING.md | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/shared/vendor/REACT_REDUX_UPGRADING.md')
-rw-r--r-- | devtools/client/shared/vendor/REACT_REDUX_UPGRADING.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/devtools/client/shared/vendor/REACT_REDUX_UPGRADING.md b/devtools/client/shared/vendor/REACT_REDUX_UPGRADING.md new file mode 100644 index 0000000000..2c8786b179 --- /dev/null +++ b/devtools/client/shared/vendor/REACT_REDUX_UPGRADING.md @@ -0,0 +1,36 @@ +[//]: # ( + 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 react-redux + +## Getting the Source + +```bash +git clone https://github.com/reactjs/react-redux +cd react-redux +git checkout v5.0.7 # checkout the right version tag +``` + +## Building + +```bash +npm install +npm run build:umd +cp dist/react-redux.js <gecko-dev>/devtools/client/shared/vendor/react-redux.js +``` + +We no longer need the react-redux repo so feel free to delete it. + +## Patching react-redux + +- open `react-redux.js` +- Add the version number to the top of the file: + ``` + /** + * react-redux v5.0.7 + */ + ``` +- Replace all instances of `'react'` with `'resource://devtools/client/shared/vendor/react.js'` (including the quotes). +- Replace all instances of `'redux'` with `'resource://devtools/client/shared/vendor/redux.js'` (including the quotes). +- Replace all instances of `Function('return this')()` with `globalThis`. See Bug 1473549. |