@pnpm/plugin-commands-outdated 8.0.2 → 8.0.4

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/lib/outdated.d.ts CHANGED
@@ -22,7 +22,7 @@ export declare const shorthands: {
22
22
  export declare const commandNames: string[];
23
23
  export declare function help(): string;
24
24
  export declare const completion: CompletionFunc;
25
- export declare type OutdatedCommandOptions = {
25
+ export type OutdatedCommandOptions = {
26
26
  compatible?: boolean;
27
27
  long?: boolean;
28
28
  recursive?: boolean;
package/lib/utils.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { OutdatedPackage } from '@pnpm/outdated';
2
2
  import { SEMVER_CHANGE } from '@pnpm/semver-diff';
3
- export declare type OutdatedWithVersionDiff = OutdatedPackage & {
3
+ export type OutdatedWithVersionDiff = OutdatedPackage & {
4
4
  change: SEMVER_CHANGE | null;
5
5
  diff?: [string[], string[]];
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/plugin-commands-outdated",
3
- "version": "8.0.2",
3
+ "version": "8.0.4",
4
4
  "description": "The outdated command of pnpm",
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-outdated",
14
+ "repository": "https://github.com/pnpm/pnpm/blob/main/reviewing/plugin-commands-outdated",
15
15
  "keywords": [
16
16
  "pnpm7",
17
17
  "pnpm",
@@ -21,12 +21,12 @@
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-outdated#readme",
24
+ "homepage": "https://github.com/pnpm/pnpm/blob/main/reviewing/plugin-commands-outdated#readme",
25
25
  "devDependencies": {
26
26
  "@pnpm/constants": "6.1.0",
27
- "@pnpm/filter-workspace-packages": "6.0.7",
28
- "@pnpm/plugin-commands-installation": "11.0.7",
29
- "@pnpm/plugin-commands-outdated": "8.0.2",
27
+ "@pnpm/filter-workspace-packages": "6.0.9",
28
+ "@pnpm/plugin-commands-installation": "11.0.9",
29
+ "@pnpm/plugin-commands-outdated": "8.0.4",
30
30
  "@pnpm/prepare": "0.0.57",
31
31
  "@pnpm/registry-mock": "3.1.0",
32
32
  "@pnpm/test-fixtures": "0.0.26",
@@ -35,23 +35,23 @@
35
35
  "@types/zkochan__table": "npm:@types/table@6.0.0"
36
36
  },
37
37
  "dependencies": {
38
- "@pnpm/cli-utils": "1.0.7",
38
+ "@pnpm/cli-utils": "1.0.9",
39
39
  "@pnpm/colorize-semver-diff": "^1.0.1",
40
40
  "@pnpm/command": "3.0.0",
41
41
  "@pnpm/common-cli-options-help": "0.9.0",
42
- "@pnpm/config": "16.1.1",
42
+ "@pnpm/config": "16.1.3",
43
43
  "@pnpm/default-resolver": "17.0.1",
44
44
  "@pnpm/error": "4.0.0",
45
45
  "@pnpm/lockfile-file": "6.0.2",
46
- "@pnpm/matcher": "4.0.0",
46
+ "@pnpm/matcher": "4.0.1",
47
47
  "@pnpm/modules-yaml": "11.0.2",
48
- "@pnpm/outdated": "11.0.4",
48
+ "@pnpm/outdated": "11.0.5",
49
49
  "@pnpm/semver-diff": "^1.1.0",
50
50
  "@pnpm/store-path": "7.0.0",
51
51
  "@pnpm/types": "8.9.0",
52
52
  "@zkochan/table": "^1.0.0",
53
53
  "chalk": "^4.1.2",
54
- "lru-cache": "^7.14.0",
54
+ "lru-cache": "^7.14.1",
55
55
  "ramda": "npm:@pnpm/ramda@0.28.1",
56
56
  "render-help": "^1.0.2",
57
57
  "strip-ansi": "^6.0.1",
@@ -66,7 +66,7 @@
66
66
  "registry-mock": "registry-mock",
67
67
  "test:jest": "jest",
68
68
  "test:e2e": "registry-mock prepare && run-p -r registry-mock test:jest",
69
- "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7776 pnpm run test:e2e",
69
+ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7781 pnpm run test:e2e",
70
70
  "test": "pnpm run compile && pnpm run _test",
71
71
  "compile": "tsc --build && pnpm run lint --fix"
72
72
  }