@atlaspack/query 2.14.1-dev.39 → 2.14.1-dev.40

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.
@@ -10,7 +10,7 @@ const v = {
10
10
  // $FlowFixMe(unsupported-syntax)
11
11
  RequestTracker: require('@atlaspack/core' + '/lib/RequestTracker'),
12
12
  // $FlowFixMe(unsupported-syntax)
13
- LMDBCache: require('@atlaspack/cache' + '/lib/LMDBLiteCache').LMDBLiteCache,
13
+ LMDBLiteCache: require('@atlaspack/cache' + '/lib/LMDBLiteCache').LMDBLiteCache,
14
14
  // $FlowFixMe(unsupported-syntax)
15
15
  Priority: require('@atlaspack/core' + '/lib/types').Priority,
16
16
  // $FlowFixMe(unsupported-syntax)
package/lib/index.js CHANGED
@@ -51,7 +51,7 @@ const {
51
51
  readAndDeserializeRequestGraph,
52
52
  requestGraphEdgeTypes
53
53
  },
54
- LMDBCache
54
+ LMDBLiteCache
55
55
  } = require('./deep-imports.js');
56
56
  async function loadGraphs(cacheDir) {
57
57
  let cacheInfo = new Map();
@@ -87,7 +87,7 @@ async function loadGraphs(cacheDir) {
87
87
  }
88
88
  return result;
89
89
  }();
90
- const cache = new LMDBCache(cacheDir);
90
+ const cache = new LMDBLiteCache(cacheDir);
91
91
 
92
92
  // Get requestTracker
93
93
  let requestTracker;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/query",
3
- "version": "2.14.1-dev.39+cb7a8afb9",
3
+ "version": "2.14.1-dev.40+3a5870291",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -18,9 +18,9 @@
18
18
  },
19
19
  "main": "src/index.js",
20
20
  "dependencies": {
21
- "@atlaspack/cache": "2.13.3-dev.39+cb7a8afb9",
22
- "@atlaspack/core": "2.14.1-dev.39+cb7a8afb9",
23
- "@atlaspack/graph": "3.4.1-dev.39+cb7a8afb9",
21
+ "@atlaspack/cache": "2.13.3-dev.40+3a5870291",
22
+ "@atlaspack/core": "2.14.1-dev.40+3a5870291",
23
+ "@atlaspack/graph": "3.4.1-dev.40+3a5870291",
24
24
  "nullthrows": "^1.1.1",
25
25
  "table": "^6.8.1",
26
26
  "v8-compile-cache": "^2.0.0"
@@ -31,5 +31,5 @@
31
31
  "rimraf": "^5.0.5"
32
32
  },
33
33
  "type": "commonjs",
34
- "gitHead": "cb7a8afb9b35e4570ba1b04175774f30561dc6fb"
34
+ "gitHead": "3a587029124601f8578afe85cbe36d50ee182837"
35
35
  }
@@ -24,7 +24,7 @@ const v =
24
24
  // $FlowFixMe(unsupported-syntax)
25
25
  RequestTracker: require('@atlaspack/core' + '/lib/RequestTracker'),
26
26
  // $FlowFixMe(unsupported-syntax)
27
- LMDBCache: require('@atlaspack/cache' + '/lib/LMDBLiteCache')
27
+ LMDBLiteCache: require('@atlaspack/cache' + '/lib/LMDBLiteCache')
28
28
  .LMDBLiteCache,
29
29
  // $FlowFixMe(unsupported-syntax)
30
30
  Priority: require('@atlaspack/core' + '/lib/types').Priority,
@@ -36,7 +36,8 @@ const v =
36
36
  AssetGraph: require('@atlaspack/core/src/AssetGraph').default,
37
37
  BundleGraph: require('@atlaspack/core/src/BundleGraph'),
38
38
  RequestTracker: require('@atlaspack/core/src/RequestTracker'),
39
- LMDBCache: require('@atlaspack/cache/src/LMDBLiteCache').LMDBLiteCache,
39
+ LMDBLiteCache: require('@atlaspack/cache/src/LMDBLiteCache')
40
+ .LMDBLiteCache,
40
41
  Priority: require('@atlaspack/core/src/types').Priority,
41
42
  fromProjectPathRelative: require('@atlaspack/core/src/projectPath')
42
43
  .fromProjectPathRelative,
@@ -56,7 +57,7 @@ module.exports = (v: {|
56
57
  requestGraphEdgeTypes: requestGraphEdgeTypes,
57
58
  ...
58
59
  },
59
- LMDBCache: LMDBLiteCache,
60
+ LMDBLiteCache: LMDBLiteCache,
60
61
  Priority: Priority,
61
62
  fromProjectPathRelative: fromProjectPathRelative,
62
63
  |});
package/src/index.js CHANGED
@@ -17,7 +17,7 @@ const {
17
17
  readAndDeserializeRequestGraph,
18
18
  requestGraphEdgeTypes,
19
19
  },
20
- LMDBCache,
20
+ LMDBLiteCache,
21
21
  } = require('./deep-imports.js');
22
22
 
23
23
  export async function loadGraphs(cacheDir: string): Promise<{|
@@ -74,7 +74,7 @@ export async function loadGraphs(cacheDir: string): Promise<{|
74
74
 
75
75
  let {requestGraphBlob, bundleGraphBlob, assetGraphBlob} =
76
76
  getMostRecentCacheBlobs();
77
- const cache = new LMDBCache(cacheDir);
77
+ const cache = new LMDBLiteCache(cacheDir);
78
78
 
79
79
  // Get requestTracker
80
80
  let requestTracker;