@pnpm/outdated 11.0.4 → 11.0.6
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/createManifestGetter.d.ts +1 -1
- package/lib/outdated.d.ts +1 -1
- package/package.json +11 -11
|
@@ -6,7 +6,7 @@ interface GetManifestOpts {
|
|
|
6
6
|
rawConfig: object;
|
|
7
7
|
registries: Registries;
|
|
8
8
|
}
|
|
9
|
-
export
|
|
9
|
+
export type ManifestGetterOptions = Omit<ClientOptions, 'authConfig'> & GetManifestOpts & {
|
|
10
10
|
fullMetadata: boolean;
|
|
11
11
|
rawConfig: Record<string, string>;
|
|
12
12
|
};
|
package/lib/outdated.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Lockfile } from '@pnpm/lockfile-file';
|
|
2
2
|
import { DependenciesField, IncludedDependencies, PackageManifest, ProjectManifest, Registries } from '@pnpm/types';
|
|
3
3
|
export * from './createManifestGetter';
|
|
4
|
-
export
|
|
4
|
+
export type GetLatestManifestFunction = (packageName: string, rangeOrTag: string) => Promise<PackageManifest | null>;
|
|
5
5
|
export interface OutdatedPackage {
|
|
6
6
|
alias: string;
|
|
7
7
|
belongsTo: DependenciesField;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/outdated",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.6",
|
|
4
4
|
"description": "Check for outdated packages",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"lib",
|
|
12
12
|
"!*.map"
|
|
13
13
|
],
|
|
14
|
-
"repository": "https://github.com/pnpm/pnpm/blob/main/
|
|
14
|
+
"repository": "https://github.com/pnpm/pnpm/blob/main/reviewing/outdated",
|
|
15
15
|
"keywords": [
|
|
16
16
|
"pnpm7",
|
|
17
17
|
"pnpm",
|
|
@@ -21,31 +21,31 @@
|
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
23
23
|
},
|
|
24
|
-
"homepage": "https://github.com/pnpm/pnpm/blob/main/
|
|
24
|
+
"homepage": "https://github.com/pnpm/pnpm/blob/main/reviewing/outdated#readme",
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@pnpm/logger": "^5.0.0"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"
|
|
29
|
+
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
30
|
+
"semver": "^7.3.8",
|
|
31
|
+
"@pnpm/client": "8.1.1",
|
|
30
32
|
"@pnpm/constants": "6.1.0",
|
|
31
33
|
"@pnpm/error": "4.0.0",
|
|
32
34
|
"@pnpm/lockfile-file": "6.0.2",
|
|
33
35
|
"@pnpm/lockfile-utils": "5.0.0",
|
|
34
36
|
"@pnpm/manifest-utils": "4.1.1",
|
|
35
|
-
"@pnpm/matcher": "4.0.
|
|
37
|
+
"@pnpm/matcher": "4.0.1",
|
|
36
38
|
"@pnpm/modules-yaml": "11.0.2",
|
|
37
39
|
"@pnpm/npm-resolver": "15.0.1",
|
|
38
40
|
"@pnpm/pick-registry-for-package": "4.0.2",
|
|
39
41
|
"@pnpm/types": "8.9.0",
|
|
40
|
-
"dependency-path": "9.2.8"
|
|
41
|
-
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
42
|
-
"semver": "^7.3.8"
|
|
42
|
+
"dependency-path": "9.2.8"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@pnpm/outdated": "11.0.4",
|
|
46
45
|
"@types/ramda": "0.28.15",
|
|
47
46
|
"@types/semver": "7.3.13",
|
|
48
|
-
"npm-run-all": "^4.1.5"
|
|
47
|
+
"npm-run-all": "^4.1.5",
|
|
48
|
+
"@pnpm/outdated": "11.0.6"
|
|
49
49
|
},
|
|
50
50
|
"funding": "https://opencollective.com/pnpm",
|
|
51
51
|
"exports": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
57
57
|
"registry-mock": "registry-mock",
|
|
58
58
|
"test:jest": "jest",
|
|
59
|
-
"_test": "cross-env PNPM_REGISTRY_MOCK_PORT=
|
|
59
|
+
"_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7779 pnpm run test:e2e",
|
|
60
60
|
"test:e2e": "registry-mock prepare && run-p -r registry-mock test:jest",
|
|
61
61
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
62
62
|
}
|