redux-saga-model
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -159,3 +159,3 @@ "use strict"; | ||
return model.namespace === namespace; | ||
}), "modelManager.model: namespace should be unique"); | ||
}), "modelManager.model: namespace should be unique :" + model.namespace); | ||
@@ -351,3 +351,8 @@ (0, _invariant2.default)(!model.subscriptions || (0, _isPlainObject2.default)(model.subscriptions) || (0, _lodash2.default)(model.subscriptions), "modelManager.model: subscriptions should be Object or Function"); | ||
model.forEach(function (m) { | ||
m = _this3.checkModel(m, privatePropsModels, hot); | ||
try { | ||
m = _this3.checkModel(m, privatePropsModels, hot); | ||
} catch (e) { | ||
console.error('if use webpack please use register with hot parameter'); | ||
return; | ||
} | ||
@@ -354,0 +359,0 @@ privatePropsModels.push(m); |
{ | ||
"name": "redux-saga-model", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"dependencies": { | ||
@@ -5,0 +5,0 @@ "flatten": "^1.0.2", |
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
306159
1059