@atlaspack/cache 3.2.12-unified-e330ff3d9.0 → 3.2.13-unified-f92fba5b6.0
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 +10 -0
- package/lib/LMDBLiteCache.js +3 -3
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# @atlaspack/cache
|
2
2
|
|
3
|
+
## 3.2.12
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [[`c75bf55`](https://github.com/atlassian-labs/atlaspack/commit/c75bf553fff4decc285b5fd499a275853b18f8f2)]:
|
8
|
+
- @atlaspack/rust@3.4.0
|
9
|
+
- @atlaspack/fs@2.15.12
|
10
|
+
- @atlaspack/logger@2.14.12
|
11
|
+
- @atlaspack/utils@2.16.1
|
12
|
+
|
3
13
|
## 3.2.11
|
4
14
|
|
5
15
|
### Patch Changes
|
package/lib/LMDBLiteCache.js
CHANGED
@@ -112,13 +112,13 @@ class LmdbWrapper {
|
|
112
112
|
}
|
113
113
|
}
|
114
114
|
exports.LmdbWrapper = LmdbWrapper;
|
115
|
-
function open(directory
|
115
|
+
function open(directory,
|
116
116
|
// eslint-disable-next-line no-unused-vars
|
117
|
-
) {
|
117
|
+
openOptions) {
|
118
118
|
return new LmdbWrapper(new (_rust().Lmdb)({
|
119
119
|
path: directory,
|
120
120
|
asyncWrites: true,
|
121
|
-
mapSize: 1024 * 1024 * 1024 * 15
|
121
|
+
mapSize: process.env.ATLASPACK_BUILD_ENV === 'test' ? 1024 * 1024 * 1024 : 1024 * 1024 * 1024 * 15
|
122
122
|
}));
|
123
123
|
}
|
124
124
|
const pipeline = (0, _util().promisify)(_stream().default.pipeline);
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atlaspack/cache",
|
3
3
|
"description": "Interface for defining caches and file-system, IDB and LMDB implementations.",
|
4
|
-
"version": "3.2.
|
4
|
+
"version": "3.2.13-unified-f92fba5b6.0",
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
6
6
|
"type": "commonjs",
|
7
7
|
"publishConfig": {
|
@@ -23,12 +23,12 @@
|
|
23
23
|
"check-ts": "tsc --noEmit index.d.ts"
|
24
24
|
},
|
25
25
|
"dependencies": {
|
26
|
-
"@atlaspack/build-cache": "2.13.4-unified-
|
27
|
-
"@atlaspack/feature-flags": "2.18.5-unified-
|
28
|
-
"@atlaspack/fs": "2.15.
|
29
|
-
"@atlaspack/logger": "2.14.
|
30
|
-
"@atlaspack/rust": "3.
|
31
|
-
"@atlaspack/utils": "2.16.
|
26
|
+
"@atlaspack/build-cache": "2.13.4-unified-f92fba5b6.0",
|
27
|
+
"@atlaspack/feature-flags": "2.18.5-unified-f92fba5b6.0",
|
28
|
+
"@atlaspack/fs": "2.15.13-unified-f92fba5b6.0",
|
29
|
+
"@atlaspack/logger": "2.14.13-unified-f92fba5b6.0",
|
30
|
+
"@atlaspack/rust": "3.4.1-unified-f92fba5b6.0",
|
31
|
+
"@atlaspack/utils": "2.16.2-unified-f92fba5b6.0",
|
32
32
|
"ncp": "^2.0.0"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
@@ -37,5 +37,5 @@
|
|
37
37
|
"browser": {
|
38
38
|
"./src/IDBCache.js": "./src/IDBCache.browser.js"
|
39
39
|
},
|
40
|
-
"gitHead": "
|
40
|
+
"gitHead": "f92fba5b6216e1d94cbd23f3a5d61f7188d49199"
|
41
41
|
}
|