New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@atlaspack/cache

Package Overview
Dependencies
Maintainers
0
Versions
302
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlaspack/cache - npm Package Compare versions

Comparing version 2.12.1-dev.3567 to 2.13.1-canary.3630

CHANGELOG.md

5

index.d.ts

@@ -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;
};

14

package.json
{
"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');

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc