Socket
Socket
Sign inDemoInstall

redux-devtools

Package Overview
Dependencies
31
Maintainers
2
Versions
42
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.3.1 to 3.3.2

4

lib/persistState.js

@@ -20,4 +20,4 @@ 'use strict';

function persistState(sessionId) {
var deserializeState = arguments.length <= 1 || arguments[1] === undefined ? _identity2.default : arguments[1];
var deserializeAction = arguments.length <= 2 || arguments[2] === undefined ? _identity2.default : arguments[2];
var deserializeState = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _identity2.default;
var deserializeAction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _identity2.default;

@@ -24,0 +24,0 @@ if (!sessionId) {

{
"name": "redux-devtools",
"version": "3.3.1",
"version": "3.3.2",
"description": "Redux DevTools with hot reloading and time travel",

@@ -10,4 +10,4 @@ "main": "lib/index.js",

"lint": "eslint src test examples",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",

@@ -46,2 +46,3 @@ "prepublish": "npm run lint && npm run test && npm run clean && npm run build"

"babel-preset-stage-0": "^6.3.13",
"cross-env": "3.1.3",
"eslint": "^0.23",

@@ -58,2 +59,4 @@ "eslint-config-airbnb": "0.0.6",

"react-dom": "^0.14.0",
"react-redux": "^4.0.0",
"redux": "^3.5.2",
"rimraf": "^2.3.4",

@@ -63,11 +66,10 @@ "webpack": "^1.11.0"

"peerDependencies": {
"redux": "^3.5.0",
"react": "^0.14.0 || ^15.0.0-rc.1"
"react": "^0.14.0 || ^15.0.0",
"react-redux": "^4.0.0 || ^5.0.0",
"redux": "^3.5.2"
},
"dependencies": {
"lodash": "^4.2.0",
"react-redux": "^4.0.0",
"redux": "^3.5.2",
"redux-devtools-instrument": "^1.0.1"
}
}
Redux DevTools
=========================
A live-editing time travel environment for [Redux](https://github.com/rackt/redux).
A live-editing time travel environment for [Redux](https://github.com/reactjs/redux).
**[See Dan's React Europe talk demoing it!](http://youtube.com/watch?v=xsSnOQynTHs)**

@@ -11,3 +11,3 @@

- [Overview](#overview)
- [Chrome Extension](#chrome-extension)
- [Browser Extension](#browser-extension)
- [Setup Instructions](#setup-instructions)

@@ -38,5 +38,5 @@ - [Custom Monitors](#custom-monitors)

### Chrome Extension
### Browser Extension
If you don’t want to bother with installing Redux DevTools and integrating it into your project, consider using [Redux DevTools Chrome Extension](https://github.com/zalmoxisus/redux-devtools-extension). It provides access to the most popular monitors, is easy to configure to filter actions, and doesn’t require installing any packages.
If you don’t want to bother with installing Redux DevTools and integrating it into your project, consider using [Redux DevTools Extension](https://github.com/zalmoxisus/redux-devtools-extension) for Chrome and Firefox. It provides access to the most popular monitors, is easy to configure to filter actions, and doesn’t require installing any packages.

@@ -43,0 +43,0 @@ ### Setup Instructions

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc