Comparing version 0.17.5 to 0.17.6
@@ -0,1 +1,8 @@ | ||
v0.17.6 - Thu, 21 Apr 2016 14:59:59 GMT | ||
--------------------------------------- | ||
- [139dd24](../../commit/139dd24) [changed] lazy qualifies as a yup schema | ||
v0.17.5 - Thu, 21 Apr 2016 11:20:16 GMT | ||
@@ -2,0 +9,0 @@ --------------------------------------- |
@@ -282,5 +282,5 @@ 'use strict'; | ||
if (Ref.isRef(value) && !value.isContext) addNode(value.path);else if (isSchema(value)) value._deps.forEach(addNode); | ||
if (Ref.isRef(value) && !value.isContext) addNode(value.path);else if (isSchema(value) && value._deps) value._deps.forEach(addNode); | ||
} | ||
}return toposort.array(nodes, edges).reverse(); | ||
} |
@@ -44,3 +44,5 @@ 'use strict'; | ||
Lazy.prototype.__isYupSchema__ = true; | ||
exports.default = Lazy; | ||
module.exports = exports['default']; |
{ | ||
"name": "yup", | ||
"version": "0.17.5", | ||
"version": "0.17.6", | ||
"description": "Dead simple Object schema validation", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
106065
1514