Comparing version 0.1.1 to 0.1.2
# Changelog | ||
### 0.1.2 (2-1-2018) | ||
* Fixed issue where trailing commas could break consumers. Fixes [#21](https://github.com/mweststrate/immer/pull/21). | ||
### 0.1.1 (2-1-2018) | ||
* Fixed issue where TypeScript typings were not correctly exposed. Fixes [#18](https://github.com/mweststrate/immer/pull/18). | ||
* Fixed issue where TypeScript typings were not correctly exposed. Fixes [#18](https://github.com/mweststrate/immer/issue/18). | ||
@@ -7,0 +11,0 @@ ### 0.1.0 (1-1-2018) |
@@ -64,3 +64,3 @@ "use strict" | ||
return true | ||
}, | ||
} | ||
} | ||
@@ -105,3 +105,3 @@ | ||
value: base, | ||
configurable: true, | ||
configurable: true | ||
}) | ||
@@ -172,3 +172,3 @@ } else { | ||
console.warn( | ||
`Immer callback expects no return value. However ${typeof maybeVoidReturn} was returned`, | ||
`Immer callback expects no return value. However ${typeof maybeVoidReturn} was returned` | ||
) | ||
@@ -223,5 +223,5 @@ // console.log(`proxies: ${revocableProxies.size}, copies: ${copies.size}`) | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true, | ||
value: true | ||
}) | ||
module.exports.default = immer | ||
module.exports.setAutoFreeze = setAutoFreeze |
{ | ||
"name": "immer", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Create your next immutable state by mutating the current one", | ||
@@ -5,0 +5,0 @@ "main": "immer.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
19115