@goldfishjs/reactive
Advanced tools
Comparing version 2.16.0 to 2.16.1
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.16.1](https://github.com/alipay/goldfish/compare/v2.16.0...v2.16.1) (2022-07-14) | ||
### Bug Fixes | ||
* exclude the property in prototype. ([203e6c3](https://github.com/alipay/goldfish/commit/203e6c38dc31f26628d875cef3c6167fee917cf4)) | ||
# [2.16.0](https://github.com/alipay/goldfish/compare/v2.15.2...v2.16.0) (2022-07-13) | ||
@@ -8,0 +19,0 @@ |
@@ -26,3 +26,3 @@ import _isObject from "@goldfishjs/utils/lib/isObject"; | ||
if (this.fns[keyPathString][curKey]) { | ||
if (Object.prototype.hasOwnProperty.call(this.fns[keyPathString], curKey)) { | ||
throw new Error("Duplicate stop function for key: ".concat(generateKeyPathString([].concat(_toConsumableArray(keyPathList), [curKey])))); | ||
@@ -29,0 +29,0 @@ } |
{ | ||
"name": "@goldfishjs/reactive", | ||
"version": "2.16.0", | ||
"version": "2.16.1", | ||
"description": "Reactive.", | ||
@@ -17,4 +17,4 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"@goldfishjs/module-usage": "^2.16.0", | ||
"@goldfishjs/utils": "^2.16.0" | ||
"@goldfishjs/module-usage": "^2.16.1", | ||
"@goldfishjs/utils": "^2.16.1" | ||
}, | ||
@@ -21,0 +21,0 @@ "devDependencies": { |
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
50347