redux-storage
Advanced tools
Comparing version 1.3.4 to 1.4.0
{ | ||
"name": "redux-storage", | ||
"version": "1.3.4", | ||
"version": "1.4.0", | ||
"description": "Persistence layer for redux with flexible backends", | ||
"main": "lib/index.js", | ||
"main": "build/index.js", | ||
"scripts": { | ||
"test": "make ci", | ||
"prepublish": "make ci build" | ||
"test": "make lint test build" | ||
}, | ||
@@ -37,5 +36,2 @@ "repository": { | ||
"babel-preset-michaelcontento": "^1.0.0", | ||
"chai": "^3.4.1", | ||
"chai-as-promised": "^5.1.0", | ||
"chai-string": "^1.1.3", | ||
"eslint": "^1.9.0", | ||
@@ -45,6 +41,4 @@ "eslint-config-airbnb": "^1.0.0", | ||
"eslint-plugin-mocha-only": "0.0.3", | ||
"mocha": "^2.3.3", | ||
"sinon": "^1.17.2", | ||
"sinon-as-promised": "^4.0.0", | ||
"sinon-chai": "^2.8.0" | ||
"mocca": "^0.2.2", | ||
"release-it": "^2.3.1" | ||
}, | ||
@@ -57,3 +51,2 @@ "dependencies": { | ||
"lodash.merge": "^3.3.2", | ||
"lodash.pairs": "^3.0.1", | ||
"lodash.set": "^3.7.4", | ||
@@ -60,0 +53,0 @@ "redux-actions": "^0.8.0" |
@@ -116,2 +116,8 @@ [redux-storage][] | ||
**Warning**: Some browsers like IE<=11 does not support Promises. For this you | ||
might use [localStorageFakePromise][] which should work too - **BUT** other | ||
parts of [redux-storage][] might depend on Promises too! So this is a possible | ||
workaround for very limited cases only. The best solution is to use a polyfill | ||
like [es6-promise][]. | ||
### Actions | ||
@@ -179,3 +185,4 @@ | ||
engine = decorators.filter(engine, [ | ||
['some', 'key'], | ||
'simple-key', | ||
['nested', 'key'], | ||
['another', 'very', 'nested', 'key'] | ||
@@ -218,2 +225,3 @@ ]); | ||
[localStorage]: https://github.com/michaelcontento/redux-storage/blob/master/src/engines/localStorage.js | ||
[localStorageFakePromise]: https://github.com/michaelcontento/redux-storage/blob/master/src/engines/localStorageFakePromise.js | ||
[reactNativeAsyncStorage]: https://github.com/michaelcontento/redux-storage/blob/master/src/engines/reactNativeAsyncStorage.js | ||
@@ -225,1 +233,2 @@ [LOAD]: https://github.com/michaelcontento/redux-storage/blob/master/src/constants.js#L1 | ||
[immutablejs]: https://github.com/michaelcontento/redux-storage/blob/master/src/decorators/immutablejs.js | ||
[es6-promise]: https://www.npmjs.com/package/es6-promise |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
8
11
18
231
25141
360
1
- Removedlodash.pairs@^3.0.1
- Removedlodash.pairs@3.0.1(transitive)