@atlaspack/query 2.14.1-dev.55 → 2.14.1-dev.76
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/CHANGELOG.md +11 -0
- package/lib/deep-imports.js +1 -1
- package/lib/index.js +2 -2
- package/package.json +6 -6
- package/src/deep-imports.js +4 -3
- package/src/index.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaspack/query
|
|
2
2
|
|
|
3
|
+
## 2.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#478](https://github.com/atlassian-labs/atlaspack/pull/478) [`570493b`](https://github.com/atlassian-labs/atlaspack/commit/570493beaf754e7985aebc7daaaf6dfcfa8fe56b) Thanks [@yamadapc](https://github.com/yamadapc)! - The first attempt at Version Packages didn't include the built artifacts.
|
|
8
|
+
This has hopefully been fixed, so this change will force those packages to re-release.
|
|
9
|
+
- Updated dependencies [[`b9d41b1`](https://github.com/atlassian-labs/atlaspack/commit/b9d41b175ad5771651a5b0278a5a0147e669234a), [`87087f4`](https://github.com/atlassian-labs/atlaspack/commit/87087f44f348ac583a27ea0819122e191ba80f8d), [`e1422ad`](https://github.com/atlassian-labs/atlaspack/commit/e1422ad0a801faaa4bc4f1023bed042ffe236e9b), [`7e357fb`](https://github.com/atlassian-labs/atlaspack/commit/7e357fb173e7958da330e3721667fa5749420952), [`570493b`](https://github.com/atlassian-labs/atlaspack/commit/570493beaf754e7985aebc7daaaf6dfcfa8fe56b)]:
|
|
10
|
+
- @atlaspack/core@2.15.0
|
|
11
|
+
- @atlaspack/graph@3.4.1
|
|
12
|
+
- @atlaspack/cache@2.13.3
|
|
13
|
+
|
|
3
14
|
## 2.14.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/lib/deep-imports.js
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
|
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.
|
|
3
|
+
"version": "2.14.1-dev.76+5fc6dbc65",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
},
|
|
19
19
|
"main": "src/index.js",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@atlaspack/cache": "2.13.3-dev.
|
|
22
|
-
"@atlaspack/core": "2.14.1-dev.
|
|
23
|
-
"@atlaspack/graph": "3.4.1-dev.
|
|
21
|
+
"@atlaspack/cache": "2.13.3-dev.76+5fc6dbc65",
|
|
22
|
+
"@atlaspack/core": "2.14.1-dev.76+5fc6dbc65",
|
|
23
|
+
"@atlaspack/graph": "3.4.1-dev.76+5fc6dbc65",
|
|
24
24
|
"nullthrows": "^1.1.1",
|
|
25
25
|
"table": "^6.8.1",
|
|
26
26
|
"v8-compile-cache": "^2.0.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@atlaspack/babel-register": "2.14.
|
|
29
|
+
"@atlaspack/babel-register": "2.14.1",
|
|
30
30
|
"@babel/core": "^7.22.11",
|
|
31
31
|
"rimraf": "^5.0.5"
|
|
32
32
|
},
|
|
33
33
|
"type": "commonjs",
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "5fc6dbc6504a411f5dfc0c549b811d998f95ca7c"
|
|
35
35
|
}
|
package/src/deep-imports.js
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
77
|
+
const cache = new LMDBLiteCache(cacheDir);
|
|
78
78
|
|
|
79
79
|
// Get requestTracker
|
|
80
80
|
let requestTracker;
|