@graffy/memory 0.15.25-alpha.1 → 0.15.25-alpha.2

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.
Files changed (3) hide show
  1. package/index.cjs +1 -1
  2. package/index.mjs +3 -1
  3. package/package.json +2 -2
package/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- var common = require("@graffy/common");
2
+ const common = require("@graffy/common");
3
3
  function index() {
4
4
  return (store) => {
5
5
  const state = [{ key: "", end: "\uFFFF", version: 0 }];
package/index.mjs CHANGED
@@ -14,4 +14,6 @@ function index() {
14
14
  });
15
15
  };
16
16
  }
17
- export { index as default };
17
+ export {
18
+ index as default
19
+ };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graffy/memory",
3
3
  "description": "Graffy module providing a simple in-memory store.",
4
4
  "author": "aravind (https://github.com/aravindet)",
5
- "version": "0.15.25-alpha.1",
5
+ "version": "0.15.25-alpha.2",
6
6
  "main": "./index.cjs",
7
7
  "exports": {
8
8
  "import": "./index.mjs",
@@ -16,6 +16,6 @@
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "dependencies": {
19
- "@graffy/common": "0.15.25-alpha.1"
19
+ "@graffy/common": "0.15.25-alpha.2"
20
20
  }
21
21
  }