@ocap/indexdb 1.16.15 → 1.17.0
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/lib/db.js +1 -1
- package/lib/index.js +1 -1
- package/lib/util.js +1 -1
- package/package.json +4 -4
package/lib/db.js
CHANGED
package/lib/index.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
/* eslint-disable no-underscore-dangle */
|
2
2
|
const Kareem = require('kareem');
|
3
3
|
const omit = require('lodash/omit');
|
4
|
-
const Ready = require('@ocap/util/lib/ready');
|
4
|
+
const { Ready } = require('@ocap/util/lib/ready');
|
5
5
|
|
6
6
|
class BaseIndex extends Ready {
|
7
7
|
constructor(name) {
|
package/lib/util.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
const get = require('lodash/get');
|
3
3
|
const uniq = require('lodash/uniq');
|
4
4
|
const pick = require('lodash/pick');
|
5
|
-
const createSortedList = require('@ocap/util/lib/create-sorted-list');
|
5
|
+
const { createSortedList } = require('@ocap/util/lib/create-sorted-list');
|
6
6
|
const { BN } = require('@ocap/util');
|
7
7
|
|
8
8
|
const formatTokenMeta = (token, tokenStates) => {
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.
|
6
|
+
"version": "1.17.0",
|
7
7
|
"description": "Defines the basic interface for OCAP IndexDB",
|
8
8
|
"main": "lib/main.js",
|
9
9
|
"files": [
|
@@ -25,10 +25,10 @@
|
|
25
25
|
"jest": "^27.3.1"
|
26
26
|
},
|
27
27
|
"dependencies": {
|
28
|
-
"@ocap/state": "1.
|
29
|
-
"@ocap/util": "1.
|
28
|
+
"@ocap/state": "1.17.0",
|
29
|
+
"@ocap/util": "1.17.0",
|
30
30
|
"kareem": "^2.3.2",
|
31
31
|
"lodash": "^4.17.21"
|
32
32
|
},
|
33
|
-
"gitHead": "
|
33
|
+
"gitHead": "f0944b60a5fb4115e1a3727bb07f68174bc56c5c"
|
34
34
|
}
|