s3db.js 7.3.2 → 7.3.3

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/dist/s3db.cjs.js CHANGED
@@ -7330,7 +7330,7 @@ class FilesystemCache extends Cache {
7330
7330
  }
7331
7331
 
7332
7332
  promisify(fs.mkdir);
7333
- const rmdir = promisify(fs.rmdir);
7333
+ const rmdir = promisify(fs.rm);
7334
7334
  const readdir = promisify(fs.readdir);
7335
7335
  const stat = promisify(fs.stat);
7336
7336
  const writeFile = promisify(fs.writeFile);
@@ -13208,7 +13208,7 @@ class Database extends EventEmitter {
13208
13208
  super();
13209
13209
  this.version = "1";
13210
13210
  this.s3dbVersion = (() => {
13211
- const [ok, err, version] = try_fn_default(() => true ? "7.3.2" : "latest");
13211
+ const [ok, err, version] = try_fn_default(() => true ? "7.3.3" : "latest");
13212
13212
  return ok ? version : "latest";
13213
13213
  })();
13214
13214
  this.resources = {};