@pnpm/plugin-commands-rebuild 7.0.8 → 7.0.9

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.
@@ -35,5 +35,5 @@ export interface StrictRebuildOptions {
35
35
  pending: boolean;
36
36
  shamefullyHoist: boolean;
37
37
  }
38
- export declare type RebuildOptions = Partial<StrictRebuildOptions> & Pick<StrictRebuildOptions, 'storeDir' | 'storeController'>;
38
+ export type RebuildOptions = Partial<StrictRebuildOptions> & Pick<StrictRebuildOptions, 'storeDir' | 'storeController'>;
39
39
  export declare function extendRebuildOptions(opts: RebuildOptions): Promise<StrictRebuildOptions>;
@@ -1,7 +1,7 @@
1
1
  import { Config } from '@pnpm/config';
2
2
  import { CreateStoreControllerOptions } from '@pnpm/store-connection-manager';
3
3
  import { Project } from '@pnpm/types';
4
- declare type RecursiveRebuildOpts = CreateStoreControllerOptions & Pick<Config, 'hoistPattern' | 'hooks' | 'ignorePnpmfile' | 'ignoreScripts' | 'lockfileDir' | 'lockfileOnly' | 'rawLocalConfig' | 'registries' | 'sharedWorkspaceLockfile'> & {
4
+ type RecursiveRebuildOpts = CreateStoreControllerOptions & Pick<Config, 'hoistPattern' | 'hooks' | 'ignorePnpmfile' | 'ignoreScripts' | 'lockfileDir' | 'lockfileOnly' | 'rawLocalConfig' | 'registries' | 'sharedWorkspaceLockfile'> & {
5
5
  pending?: boolean;
6
6
  } & Partial<Pick<Config, 'bail' | 'sort' | 'workspaceConcurrency'>>;
7
7
  export declare function recursiveRebuild(allProjects: Project[], params: string[], opts: RecursiveRebuildOpts & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/plugin-commands-rebuild",
3
- "version": "7.0.8",
3
+ "version": "7.0.9",
4
4
  "description": "Commands for rebuilding dependencies",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "engines": {
12
12
  "node": ">=14.6"
13
13
  },
14
- "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-rebuild",
14
+ "repository": "https://github.com/pnpm/pnpm/blob/main/exec/plugin-commands-rebuild",
15
15
  "keywords": [
16
16
  "pnpm7",
17
17
  "pnpm",
@@ -21,10 +21,10 @@
21
21
  "bugs": {
22
22
  "url": "https://github.com/pnpm/pnpm/issues"
23
23
  },
24
- "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-rebuild#readme",
24
+ "homepage": "https://github.com/pnpm/pnpm/blob/main/exec/plugin-commands-rebuild#readme",
25
25
  "devDependencies": {
26
- "@pnpm/filter-workspace-packages": "6.0.8",
27
- "@pnpm/plugin-commands-rebuild": "7.0.8",
26
+ "@pnpm/filter-workspace-packages": "6.0.9",
27
+ "@pnpm/plugin-commands-rebuild": "7.0.9",
28
28
  "@pnpm/prepare": "0.0.57",
29
29
  "@pnpm/registry-mock": "3.1.0",
30
30
  "@pnpm/test-fixtures": "0.0.26",
@@ -33,16 +33,16 @@
33
33
  "@types/sinon": "^10.0.13",
34
34
  "execa": "npm:safe-execa@^0.1.2",
35
35
  "path-exists": "^4.0.0",
36
- "sinon": "^14.0.1",
36
+ "sinon": "^14.0.2",
37
37
  "write-yaml-file": "^4.2.0"
38
38
  },
39
39
  "dependencies": {
40
- "@pnpm/cli-utils": "1.0.8",
40
+ "@pnpm/cli-utils": "1.0.9",
41
41
  "@pnpm/common-cli-options-help": "0.9.0",
42
- "@pnpm/config": "16.1.2",
42
+ "@pnpm/config": "16.1.3",
43
43
  "@pnpm/constants": "6.1.0",
44
44
  "@pnpm/core-loggers": "8.0.2",
45
- "@pnpm/find-workspace-packages": "5.0.8",
45
+ "@pnpm/find-workspace-packages": "5.0.9",
46
46
  "@pnpm/get-context": "8.0.2",
47
47
  "@pnpm/graph-sequencer": "1.0.0",
48
48
  "@pnpm/lifecycle": "14.1.0",
@@ -53,7 +53,7 @@
53
53
  "@pnpm/normalize-registries": "4.0.2",
54
54
  "@pnpm/npm-package-arg": "^1.0.0",
55
55
  "@pnpm/sort-packages": "4.0.2",
56
- "@pnpm/store-connection-manager": "5.1.1",
56
+ "@pnpm/store-connection-manager": "5.1.2",
57
57
  "@pnpm/store-controller-types": "14.1.5",
58
58
  "@pnpm/types": "8.9.0",
59
59
  "dependency-path": "9.2.8",
@@ -77,7 +77,7 @@
77
77
  "registry-mock": "registry-mock",
78
78
  "test:jest": "jest",
79
79
  "test:e2e": "registry-mock prepare && run-p -r registry-mock test:jest",
80
- "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7779 pnpm run test:e2e",
80
+ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7770 pnpm run test:e2e",
81
81
  "test": "pnpm run compile && pnpm run _test",
82
82
  "compile": "tsc --build && pnpm run lint --fix"
83
83
  }