mobx-utils
Advanced tools
Comparing version 5.0.2 to 5.0.3
@@ -0,1 +1,5 @@ | ||
# 5.0.3 | ||
* Introduced `deepObserve` utility, through [#154](https://github.com/mobxjs/mobx-utils/pull/154) | ||
# 5.0.2 | ||
@@ -2,0 +6,0 @@ |
{ | ||
"name": "mobx-utils", | ||
"version": "5.0.2", | ||
"version": "5.0.3", | ||
"description": "Utility functions and common patterns for MobX", | ||
@@ -16,5 +16,2 @@ "main": "mobx-utils.umd.js", | ||
"test": "yarn jest", | ||
"lint:js": "eslint ./test", | ||
"lint:ts": "tslint ./src/*.ts", | ||
"lint": "npm run lint:ts && npm run lint:js", | ||
"prepublishOnly": "npm run build && npm run build-docs", | ||
@@ -41,11 +38,10 @@ "coverage": "yarn jest --coverage", | ||
"@types/tape": "^4.2.30", | ||
"babel-eslint": "^7.1.0", | ||
"coveralls": "^2.11.4", | ||
"documentation": "^4.0.0-beta.18", | ||
"eslint": "^3.10.1", | ||
"faucet": "0.0.1", | ||
"jest": "^22.4.2", | ||
"lint-staged": "^4.2.3", | ||
"lodash.clonedeep": "^4.5.0", | ||
"lodash.clonedeepwith": "^4.5.0", | ||
"lodash.intersection": "^4.4.0", | ||
"mobx": "^5.0.0-beta.5", | ||
"mobx": "^5.5.0", | ||
"prettier": "^1.7.2", | ||
@@ -55,4 +51,2 @@ "rollup": "^0.50.0", | ||
"ts-jest": "^22.4.1", | ||
"tslint": "^3.15.1", | ||
"tslint-eslint-rules": "^2.1.0", | ||
"typescript": "^2.9.0" | ||
@@ -59,0 +53,0 @@ }, |
@@ -255,3 +255,3 @@ # MobX-utils | ||
Converts an subscribable, observable stream (TC 39 observable / RxJS stream) | ||
Converts a subscribable, observable stream (TC 39 observable / RxJS stream) | ||
into an object which stores the current value (as `current`). The subscription can be cancelled through the `dispose` method. | ||
@@ -284,3 +284,3 @@ Takes an initial value as second optional argument | ||
`createViewModel` takes an object with observable properties (model) | ||
and wraps a viewmodel around it. The viewmodel proxies all enumerable property of the original model with the following behavior: | ||
and wraps a viewmodel around it. The viewmodel proxies all enumerable properties of the original model with the following behavior: | ||
@@ -575,2 +575,4 @@ - as long as no new value has been assigned to the viewmodel property, the original property will be returned. | ||
_deprecated_ whenAsync is deprecated, use mobx.when without effect instead. | ||
Like normal `when`, except that this `when` will return a promise that resolves when the expression becomes truthy | ||
@@ -577,0 +579,0 @@ |
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
15
623
239487