sliftutils 1.4.78 → 1.4.79

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": "sliftutils",
3
- "version": "1.4.78",
3
+ "version": "1.4.79",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -286,6 +286,7 @@ export class BulkDatabaseBase<T extends { key: string }> {
286
286
 
287
287
  private async automaticCompactionAllowed(): Promise<boolean> {
288
288
  if (networkCompactionEnabled) return true;
289
+ if (isNode()) return true;
289
290
  return !(await this.storage()).isRemote;
290
291
  }
291
292