@esportsplus/web-storage 0.1.36 → 0.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/local.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Filter, LocalForage, Options } from '~/types';
1
+ import { Filter, LocalForage, Options } from './types';
2
2
  declare class Local<T> {
3
3
  instance: LocalForage;
4
4
  iterate: LocalForage['iterate'];
package/build/local.js CHANGED
@@ -1,4 +1,4 @@
1
- import { Driver } from '~/types';
1
+ import { Driver } from './types';
2
2
  import { decrypt, encrypt } from '@esportsplus/crypto';
3
3
  import localforage from 'localforage';
4
4
  async function deserialize(value, secret = null) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "ICJR",
3
3
  "dependencies": {
4
- "@esportsplus/crypto": "^0.0.10",
4
+ "@esportsplus/crypto": "^0.0.12",
5
5
  "localforage": "^1.10.0"
6
6
  },
7
7
  "description": "Web storage utility",
@@ -18,5 +18,5 @@
18
18
  "prepublishOnly": "npm run build"
19
19
  },
20
20
  "types": "build/index.d.ts",
21
- "version": "0.1.36"
21
+ "version": "0.1.38"
22
22
  }