@dxos/random-access-storage 0.8.4-main.84f28bd → 0.8.4-main.b97322e

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/random-access-storage",
3
- "version": "0.8.4-main.84f28bd",
3
+ "version": "0.8.4-main.b97322e",
4
4
  "description": "Multiple random storage types.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -37,13 +37,13 @@
37
37
  "random-access-file": "^2.2.1",
38
38
  "random-access-memory": "^4.1.0",
39
39
  "random-access-storage": "^1.3.0",
40
- "@dxos/async": "0.8.4-main.84f28bd",
41
- "@dxos/invariant": "0.8.4-main.84f28bd",
42
- "@dxos/debug": "0.8.4-main.84f28bd",
43
- "@dxos/log": "0.8.4-main.84f28bd",
44
- "@dxos/node-std": "0.8.4-main.84f28bd",
45
- "@dxos/tracing": "0.8.4-main.84f28bd",
46
- "@dxos/util": "0.8.4-main.84f28bd"
40
+ "@dxos/async": "0.8.4-main.b97322e",
41
+ "@dxos/debug": "0.8.4-main.b97322e",
42
+ "@dxos/log": "0.8.4-main.b97322e",
43
+ "@dxos/node-std": "0.8.4-main.b97322e",
44
+ "@dxos/tracing": "0.8.4-main.b97322e",
45
+ "@dxos/util": "0.8.4-main.b97322e",
46
+ "@dxos/invariant": "0.8.4-main.b97322e"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/pify": "^3.0.2",
@@ -93,7 +93,7 @@ export class IDbStorage extends AbstractStorage {
93
93
 
94
94
  return new Promise((resolve, reject) => {
95
95
  transaction.onerror = () => {
96
- reject(request.error);
96
+ reject(request.error!);
97
97
  };
98
98
 
99
99
  request.onsuccess = (event) => {