Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-cmf

Package Overview
Dependencies
Maintainers
1
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-cmf - npm Package Compare versions

Comparing version 0.9.3 to 0.10.0

4

lib/store.js

@@ -18,2 +18,4 @@ 'use strict';

var _reduxBatchedActions = require('redux-batched-actions');
var _reduxThunk = require('redux-thunk');

@@ -103,3 +105,3 @@

var store = _redux.compose.apply(undefined, [_redux.applyMiddleware.apply(undefined, middlewares)].concat(enhancers))(_redux.createStore)(rootReducer, preloadedState);
var store = _redux.compose.apply(undefined, [_redux.applyMiddleware.apply(undefined, middlewares)].concat(enhancers))(_redux.createStore)((0, _reduxBatchedActions.enableBatching)(rootReducer), preloadedState);

@@ -106,0 +108,0 @@ return store;

@@ -64,2 +64,3 @@ {

"redux": "3",
"redux-batched-actions": "^0.1.4",
"redux-logger": "2.6.1",

@@ -83,5 +84,6 @@ "redux-mock-store": "^1.1.4",

"redux": "3",
"redux-batched-actions": "0",
"redux-thunk": "2"
},
"version": "0.9.3"
"version": "0.10.0"
}

@@ -7,2 +7,3 @@ /**

import { combineReducers, createStore, applyMiddleware, compose } from 'redux';
import { enableBatching } from 'redux-batched-actions';
import thunk from 'redux-thunk';

@@ -86,3 +87,3 @@ import invariant from 'invariant';

...enhancers
)(createStore)(rootReducer, preloadedState);
)(createStore)(enableBatching(rootReducer), preloadedState);

@@ -89,0 +90,0 @@ return store;

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc