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

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,23 @@
1
1
  # @pnpm/create-cafs-store
2
2
 
3
+ ## 1100.0.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @pnpm/building.pkg-requires-build@1100.0.10
9
+ - @pnpm/fetching.fetcher-base@1100.2.3
10
+ - @pnpm/fs.indexed-pkg-importer@1100.0.20
11
+ - @pnpm/store.cafs@1100.1.14
12
+ - @pnpm/store.controller-types@1100.1.9
13
+
14
+ ## 1100.0.19
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies:
19
+ - @pnpm/fs.indexed-pkg-importer@1100.0.19
20
+
3
21
  ## 1100.0.18
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/store.create-cafs-store",
3
- "version": "1100.0.18",
3
+ "version": "1100.0.20",
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.9",
41
- "@pnpm/fetching.fetcher-base": "1100.2.2",
42
- "@pnpm/fs.indexed-pkg-importer": "1100.0.18",
43
- "@pnpm/store.cafs": "1100.1.13",
44
- "@pnpm/store.controller-types": "1100.1.8",
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",
45
45
  "memoize": "^11.0.0",
46
46
  "ramda": "npm:@pnpm/ramda@0.28.1"
47
47
  },
@@ -50,9 +50,9 @@
50
50
  },
51
51
  "devDependencies": {
52
52
  "@pnpm/logger": "1100.0.0",
53
- "@pnpm/prepare": "1100.0.19",
53
+ "@pnpm/prepare": "1100.0.21",
54
54
  "@pnpm/store.cafs-types": "1100.0.1",
55
- "@pnpm/store.create-cafs-store": "1100.0.18",
55
+ "@pnpm/store.create-cafs-store": "1100.0.20",
56
56
  "@types/ramda": "0.31.1"
57
57
  },
58
58
  "engines": {
package/lib/index.d.ts DELETED
@@ -1,15 +0,0 @@
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;