@pnpm/installing.context 1001.1.8 → 1100.0.1

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.d.ts +0 -4
  2. package/package.json +15 -15
package/lib/index.d.ts CHANGED
@@ -82,9 +82,7 @@ export interface GetContextOptions {
82
82
  virtualStoreDirMaxLength: number;
83
83
  workspacePackages?: WorkspacePackages;
84
84
  hoistPattern?: string[] | undefined;
85
- forceHoistPattern?: boolean;
86
85
  publicHoistPattern?: string[] | undefined;
87
- forcePublicHoistPattern?: boolean;
88
86
  global?: boolean;
89
87
  }
90
88
  export declare function getContext(opts: GetContextOptions): Promise<PnpmContext>;
@@ -144,9 +142,7 @@ export declare function getContextForSingleImporter(manifest: ProjectManifest, o
144
142
  virtualStoreDir?: string;
145
143
  virtualStoreDirMaxLength: number;
146
144
  hoistPattern?: string[] | undefined;
147
- forceHoistPattern?: boolean;
148
145
  publicHoistPattern?: string[] | undefined;
149
- forcePublicHoistPattern?: boolean;
150
146
  }): Promise<PnpmSingleContext>;
151
147
  export declare function arrayOfWorkspacePackagesToMap(pkgs: Array<Pick<ProjectOptions, 'manifest' | 'rootDir'>>): WorkspacePackages;
152
148
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/installing.context",
3
- "version": "1001.1.8",
3
+ "version": "1100.0.1",
4
4
  "description": "Gets context information about a project",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -27,22 +27,22 @@
27
27
  "dependencies": {
28
28
  "path-absolute": "^2.0.0",
29
29
  "ramda": "npm:@pnpm/ramda@0.28.1",
30
- "@pnpm/installing.modules-yaml": "1000.3.6",
31
- "@pnpm/core-loggers": "1001.0.4",
32
- "@pnpm/lockfile.fs": "1001.1.21",
33
- "@pnpm/installing.read-projects-context": "1000.0.24",
34
- "@pnpm/resolving.resolver-base": "1005.1.0",
35
- "@pnpm/constants": "1001.3.1",
36
- "@pnpm/types": "1000.9.0",
37
- "@pnpm/store.controller": "1004.0.0"
30
+ "@pnpm/constants": "1100.0.0",
31
+ "@pnpm/installing.modules-yaml": "1100.0.1",
32
+ "@pnpm/core-loggers": "1100.0.1",
33
+ "@pnpm/installing.read-projects-context": "1100.0.1",
34
+ "@pnpm/resolving.resolver-base": "1100.0.1",
35
+ "@pnpm/store.controller": "1100.0.1",
36
+ "@pnpm/types": "1101.0.0",
37
+ "@pnpm/lockfile.fs": "1100.0.1"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@pnpm/logger": ">=1001.0.0 <1002.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@types/ramda": "0.29.12",
44
- "@pnpm/installing.context": "1001.1.8",
45
- "@pnpm/logger": "1001.0.1"
43
+ "@types/ramda": "0.31.1",
44
+ "@pnpm/installing.context": "1100.0.1",
45
+ "@pnpm/logger": "1100.0.0"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=22.13"
@@ -52,8 +52,8 @@
52
52
  },
53
53
  "scripts": {
54
54
  "lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
55
- "_test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest",
56
- "test": "pnpm run compile && pnpm run _test",
57
- "compile": "tsgo --build && pnpm run lint --fix"
55
+ "test": "pn compile && pn .test",
56
+ "compile": "tsgo --build && pn lint --fix",
57
+ ".test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest"
58
58
  }
59
59
  }