@pnpm/store.commands 1100.0.3 → 1100.0.5

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.
@@ -30,7 +30,7 @@ export async function cleanOrphans(dlxCacheDir) {
30
30
  const dlxCacheNames = readOptDir(dlxCacheDir);
31
31
  if (!dlxCacheNames)
32
32
  return;
33
- await Promise.all(dlxCacheNames.map(async dlxCacheName => {
33
+ await Promise.all(dlxCacheNames.map(async (dlxCacheName) => {
34
34
  const dlxCachePath = path.join(dlxCacheDir, dlxCacheName);
35
35
  const dlxCacheLink = path.join(dlxCachePath, 'pkg');
36
36
  const dlxCacheLinkStats = await getStats(dlxCacheLink);
@@ -39,7 +39,7 @@ export async function cleanOrphans(dlxCacheDir) {
39
39
  }
40
40
  const dlxCacheLinkTarget = await getRealPath(dlxCacheLink);
41
41
  const children = await fs.readdir(dlxCachePath);
42
- await Promise.all(children.map(async name => {
42
+ await Promise.all(children.map(async (name) => {
43
43
  if (name === 'pkg')
44
44
  return;
45
45
  const fullPath = path.join(dlxCachePath, name);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/store.commands",
3
- "version": "1100.0.3",
3
+ "version": "1100.0.5",
4
4
  "description": "Commands for controlling and inspecting the store",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -33,25 +33,25 @@
33
33
  "ramda": "npm:@pnpm/ramda@0.28.1",
34
34
  "render-help": "^2.0.0",
35
35
  "@pnpm/cli.utils": "1101.0.0",
36
+ "@pnpm/crypto.integrity": "1100.0.0",
36
37
  "@pnpm/config.normalize-registries": "1100.0.1",
37
- "@pnpm/deps.path": "1100.0.1",
38
38
  "@pnpm/error": "1100.0.0",
39
- "@pnpm/config.reader": "1101.1.0",
40
- "@pnpm/crypto.integrity": "1100.0.0",
41
- "@pnpm/global.packages": "1100.0.1",
39
+ "@pnpm/deps.path": "1100.0.1",
40
+ "@pnpm/config.reader": "1101.1.1",
42
41
  "@pnpm/fs.graceful-fs": "1100.0.0",
43
- "@pnpm/installing.client": "1100.0.3",
44
- "@pnpm/lockfile.types": "1100.0.2",
45
- "@pnpm/installing.context": "1100.0.2",
42
+ "@pnpm/global.packages": "1100.0.1",
43
+ "@pnpm/installing.client": "1100.0.5",
44
+ "@pnpm/installing.context": "1100.0.3",
45
+ "@pnpm/lockfile.utils": "1100.0.3",
46
46
  "@pnpm/object.key-sorting": "1100.0.0",
47
- "@pnpm/lockfile.utils": "1100.0.2",
48
- "@pnpm/store.cafs": "1100.0.2",
47
+ "@pnpm/store.cafs": "1100.1.0",
48
+ "@pnpm/lockfile.types": "1100.0.2",
49
49
  "@pnpm/resolving.parse-wanted-dependency": "1100.0.0",
50
+ "@pnpm/store.connection-manager": "1100.0.5",
51
+ "@pnpm/store.index": "1100.0.0",
50
52
  "@pnpm/store.path": "1100.0.0",
51
- "@pnpm/store.connection-manager": "1100.0.3",
52
53
  "@pnpm/types": "1101.0.0",
53
- "@pnpm/store.controller-types": "1100.0.2",
54
- "@pnpm/store.index": "1100.0.0"
54
+ "@pnpm/store.controller-types": "1100.0.3"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "@pnpm/logger": ">=1001.0.0 <1002.0.0"
@@ -67,14 +67,14 @@
67
67
  "load-json-file": "^7.0.1",
68
68
  "ssri": "13.0.1",
69
69
  "tempy": "3.0.0",
70
+ "@pnpm/assert-store": "1100.0.3",
70
71
  "@pnpm/constants": "1100.0.0",
71
- "@pnpm/assert-store": "1100.0.2",
72
- "@pnpm/lockfile.fs": "1100.0.2",
73
- "@pnpm/exec.commands": "1100.0.3",
72
+ "@pnpm/exec.commands": "1100.0.5",
74
73
  "@pnpm/logger": "1100.0.0",
75
- "@pnpm/prepare": "1100.0.2",
76
- "@pnpm/store.controller": "1100.0.2",
77
- "@pnpm/store.commands": "1100.0.3"
74
+ "@pnpm/lockfile.fs": "1100.0.3",
75
+ "@pnpm/prepare": "1100.0.3",
76
+ "@pnpm/store.commands": "1100.0.5",
77
+ "@pnpm/store.controller": "1101.0.0"
78
78
  },
79
79
  "engines": {
80
80
  "node": ">=22.13"