Comparing version 0.1.0-alpha.6 to 0.1.0-alpha.7
@@ -55,3 +55,3 @@ 'use strict'; | ||
var reducers = [refectReducer].concat(_toConsumableArray(putinReducers), _toConsumableArray(rootPutinReducers)); | ||
var reducers = [].concat(_toConsumableArray(rootPutinReducers), _toConsumableArray(putinReducers), [refectReducer]); | ||
var finalRefectReducer = _parseRefect.combineRefectReducer.apply(undefined, _toConsumableArray(reducers)); | ||
@@ -58,0 +58,0 @@ var reducerActionCreators = (0, _parseRefect.parseRefectActions)(finalRefectReducer, namespace); |
{ | ||
"name": "refect", | ||
"version": "0.1.0-alpha.6", | ||
"version": "0.1.0-alpha.7", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -34,3 +34,3 @@ import { | ||
const reducers = [refectReducer, ...putinReducers, ...rootPutinReducers]; | ||
const reducers = [...rootPutinReducers, ...putinReducers, refectReducer]; | ||
const finalRefectReducer = combineRefectReducer(...reducers); | ||
@@ -37,0 +37,0 @@ const reducerActionCreators = parseRefectActions(finalRefectReducer, namespace); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54649