New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

orchestra-components

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

orchestra-components - npm Package Compare versions

Comparing version 0.8.1 to 0.9.0

yarn.lock

7

package.json
{
"name": "orchestra-components",
"version": "0.8.1",
"version": "0.9.0",
"description": "",
"main": "index.js",
"repository": "https://github.com/ahumphreys87/orchestra-components",
"author": "Andrew Humphreys <ahumphreys87@googlemail.com>",

@@ -13,6 +14,4 @@ "contributors": "Liam Swinney <me@liamswinney.co.uk>",

"node-polyglot": "^2.2.2",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0"
"redux": "^3.6.0"
}
}
import { createStore, applyMiddleware, compose } from 'redux';
import thunkMiddleware from 'redux-thunk';

@@ -17,3 +16,3 @@ const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;

export function configureStore(reducer, preloadedState) {
export function configureStore(reducer, preloadedState, middleware = []) {
return createStore(

@@ -23,7 +22,5 @@ reducer,

composeEnhancers(
applyMiddleware(
thunkMiddleware
)
applyMiddleware(...middleware)
)
);
};
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