@atlaspack/cache
Advanced tools
Comparing version 2.12.1-dev.3567 to 2.13.1-canary.3630
@@ -5,2 +5,3 @@ import type {FilePath} from '@atlaspack/types'; | ||
export type {Cache} from './lib/types'; | ||
export const FSCache: { | ||
@@ -13,1 +14,5 @@ new (cacheDir: FilePath): Cache; | ||
}; | ||
export const LMDBLiteCache: { | ||
new (cacheDir: FilePath): Cache; | ||
}; |
{ | ||
"name": "@atlaspack/cache", | ||
"description": "Interface for defining caches and file-system, IDB and LMDB implementations.", | ||
"version": "2.12.1-dev.3567+c06f4487e", | ||
"version": "2.13.1-canary.3630+10a6f37ef", | ||
"license": "(MIT OR Apache-2.0)", | ||
@@ -25,7 +25,7 @@ "publishConfig": { | ||
"dependencies": { | ||
"@atlaspack/build-cache": "2.12.1-dev.3567+c06f4487e", | ||
"@atlaspack/fs": "2.12.1-dev.3567+c06f4487e", | ||
"@atlaspack/logger": "2.12.1-dev.3567+c06f4487e", | ||
"@atlaspack/rust": "2.12.1-dev.3567+c06f4487e", | ||
"@atlaspack/utils": "2.12.1-dev.3567+c06f4487e", | ||
"@atlaspack/build-cache": "2.13.1-canary.3630+10a6f37ef", | ||
"@atlaspack/fs": "2.13.1-canary.3630+10a6f37ef", | ||
"@atlaspack/logger": "2.13.1-canary.3630+10a6f37ef", | ||
"@atlaspack/rust": "2.13.1-canary.3630+10a6f37ef", | ||
"@atlaspack/utils": "2.13.1-canary.3630+10a6f37ef", | ||
"lmdb": "2.8.5" | ||
@@ -40,3 +40,3 @@ }, | ||
}, | ||
"gitHead": "c06f4487ebddc632957147c8b585a97e149062a1" | ||
"gitHead": "10a6f37ef063d0227ebb26310383e899dbd9b1e6" | ||
} |
@@ -1,6 +0,7 @@ | ||
import * as path from 'node:path'; | ||
// @flow | ||
import * as path from 'path'; | ||
import {tmpdir} from 'os'; | ||
import {LMDBLiteCache} from '../src/index'; | ||
import {deserialize, serialize} from 'node:v8'; | ||
import assert from 'node:assert'; | ||
import {deserialize, serialize} from 'v8'; | ||
import assert from 'assert'; | ||
@@ -7,0 +8,0 @@ const cacheDir = path.join(tmpdir(), 'lmdb-lite-cache-tests'); |
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Debug access
Supply chain riskUses debug, reflection and dynamic code execution features.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
51311
22
1309
1