@pnpm/store.create-cafs-store 1100.0.20 → 1100.0.22

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 CHANGED
@@ -1,5 +1,29 @@
1
1
  # @pnpm/create-cafs-store
2
2
 
3
+ ## 1100.0.22
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @pnpm/building.pkg-requires-build@1100.0.12
9
+ - @pnpm/fetching.fetcher-base@1100.2.5
10
+ - @pnpm/fs.indexed-pkg-importer@1100.0.22
11
+ - @pnpm/store.cafs@1100.1.16
12
+ - @pnpm/store.controller-types@1100.1.11
13
+
14
+ ## 1100.0.21
15
+
16
+ ### Patch Changes
17
+
18
+ - Republished every package: the tarballs published by the v11.13.1 through v11.16.0 releases were missing most of their compiled files due to a packing bug [#13164](https://github.com/pnpm/pnpm/issues/13164).
19
+
20
+ - Updated dependencies:
21
+ - @pnpm/building.pkg-requires-build@1100.0.11
22
+ - @pnpm/fetching.fetcher-base@1100.2.4
23
+ - @pnpm/fs.indexed-pkg-importer@1100.0.21
24
+ - @pnpm/store.cafs@1100.1.15
25
+ - @pnpm/store.controller-types@1100.1.10
26
+
3
27
  ## 1100.0.20
4
28
 
5
29
  ### Patch Changes
package/lib/index.d.ts ADDED
@@ -0,0 +1,15 @@
1
+ import { type CafsLocker } from '@pnpm/store.cafs';
2
+ import type { Cafs } from '@pnpm/store.cafs-types';
3
+ import type { ImportIndexedPackage, ImportIndexedPackageAsync, ImportPackageFunctionAsync } from '@pnpm/store.controller-types';
4
+ export { type CafsLocker };
5
+ export declare function createPackageImporterAsync(opts: {
6
+ importIndexedPackage?: ImportIndexedPackageAsync;
7
+ packageImportMethod?: 'auto' | 'hardlink' | 'copy' | 'clone' | 'clone-or-copy';
8
+ storeDir: string;
9
+ }): ImportPackageFunctionAsync;
10
+ export declare function createCafsStore(storeDir: string, opts?: {
11
+ ignoreFile?: (filename: string) => boolean;
12
+ importPackage?: ImportIndexedPackage;
13
+ packageImportMethod?: 'auto' | 'hardlink' | 'copy' | 'clone' | 'clone-or-copy';
14
+ cafsLocker?: CafsLocker;
15
+ }): Cafs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/store.create-cafs-store",
3
- "version": "1100.0.20",
3
+ "version": "1100.0.22",
4
4
  "description": "Create a CAFS store controller",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -37,11 +37,11 @@
37
37
  "test": "test"
38
38
  },
39
39
  "dependencies": {
40
- "@pnpm/building.pkg-requires-build": "1100.0.10",
41
- "@pnpm/fetching.fetcher-base": "1100.2.3",
42
- "@pnpm/fs.indexed-pkg-importer": "1100.0.20",
43
- "@pnpm/store.cafs": "1100.1.14",
44
- "@pnpm/store.controller-types": "1100.1.9",
40
+ "@pnpm/building.pkg-requires-build": "1100.0.12",
41
+ "@pnpm/fetching.fetcher-base": "1100.2.5",
42
+ "@pnpm/fs.indexed-pkg-importer": "1100.0.22",
43
+ "@pnpm/store.cafs": "1100.1.16",
44
+ "@pnpm/store.controller-types": "1100.1.11",
45
45
  "memoize": "^11.0.0",
46
46
  "ramda": "npm:@pnpm/ramda@0.28.1"
47
47
  },
@@ -50,10 +50,10 @@
50
50
  },
51
51
  "devDependencies": {
52
52
  "@pnpm/logger": "1100.0.0",
53
- "@pnpm/prepare": "1100.0.21",
54
- "@pnpm/store.cafs-types": "1100.0.1",
55
- "@pnpm/store.create-cafs-store": "1100.0.20",
56
- "@types/ramda": "0.31.1"
53
+ "@pnpm/prepare": "1100.0.23",
54
+ "@pnpm/store.cafs-types": "1100.0.2",
55
+ "@pnpm/store.create-cafs-store": "1100.0.22",
56
+ "@types/ramda": "0.32.0"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=22.13"