@pnpm/lockfile.make-dedicated-lockfile 1100.0.6 → 1100.0.8

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.
Files changed (2) hide show
  1. package/lib/index.js +2 -2
  2. package/package.json +7 -7
package/lib/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import path from 'node:path';
2
- import pnpmExec from '@pnpm/exec';
2
+ import { pnpmExec } from '@pnpm/exec';
3
3
  import { getLockfileImporterId, readWantedLockfile, writeWantedLockfile, } from '@pnpm/lockfile.fs';
4
4
  import { pruneSharedLockfile } from '@pnpm/lockfile.pruner';
5
5
  import { createExportableManifest } from '@pnpm/releasing.exportable-manifest';
@@ -49,7 +49,7 @@ export async function makeDedicatedLockfile(lockfileDir, projectDir) {
49
49
  throw err;
50
50
  }
51
51
  try {
52
- await pnpmExec.default([
52
+ await pnpmExec([
53
53
  'install',
54
54
  '--frozen-lockfile',
55
55
  '--lockfile-dir=.',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/lockfile.make-dedicated-lockfile",
3
- "version": "1100.0.6",
3
+ "version": "1100.0.8",
4
4
  "description": "Creates a dedicated lockfile for a subset of workspace projects",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -26,23 +26,23 @@
26
26
  "bin"
27
27
  ],
28
28
  "dependencies": {
29
- "@pnpm/exec": "^2.0.0",
29
+ "@pnpm/exec": "^4.0.0",
30
30
  "ramda": "npm:@pnpm/ramda@0.28.1",
31
31
  "rename-overwrite": "^7.0.1",
32
+ "@pnpm/error": "1100.0.0",
33
+ "@pnpm/lockfile.fs": "1100.0.6",
32
34
  "@pnpm/lockfile.pruner": "1100.0.4",
33
- "@pnpm/releasing.exportable-manifest": "1100.0.3",
34
35
  "@pnpm/logger": "1100.0.0",
36
+ "@pnpm/releasing.exportable-manifest": "1100.0.3",
35
37
  "@pnpm/types": "1101.0.0",
36
- "@pnpm/error": "1100.0.0",
37
38
  "@pnpm/workspace.project-manifest-reader": "1100.0.3",
38
- "@pnpm/workspace.root-finder": "1100.0.1",
39
- "@pnpm/lockfile.fs": "1100.0.5"
39
+ "@pnpm/workspace.root-finder": "1100.0.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@jest/globals": "30.3.0",
43
43
  "@types/ramda": "0.31.1",
44
44
  "execa": "npm:safe-execa@0.3.0",
45
- "@pnpm/lockfile.make-dedicated-lockfile": "1100.0.6",
45
+ "@pnpm/lockfile.make-dedicated-lockfile": "1100.0.8",
46
46
  "@pnpm/test-fixtures": "1100.0.0"
47
47
  },
48
48
  "engines": {