REACT_REDUX_UPGRADING 491 B

12345678910
  1. "react-redux" uses UMD style loading to work in many different environments.
  2. It assumes that "react" and "redux" are both included via `require("react")`
  3. as in node or browserify, but the paths to our react and redux installation are different.
  4. If upgrading react-redux, define the correct paths and replace the require statements
  5. for the module.exports case with the correct paths.
  6. Path to react: "devtools/client/shared/vendor/react"
  7. Path to redux: "devtools/client/shared/vendor/redux"