@nxtedition/rocksdb 7.0.50 → 7.0.51

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/index.js CHANGED
@@ -64,6 +64,9 @@ class RocksLevel extends AbstractLevel {
64
64
  this[kLocation] = location
65
65
  this[kContext] = binding.db_init()
66
66
  this[kColumns] = {}
67
+
68
+ // .updates(...) uses 'write' listener.
69
+ this.setMaxListeners(100)
67
70
  }
68
71
 
69
72
  get sequence () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "7.0.50",
3
+ "version": "7.0.51",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",