@pnpm/config 16.1.1 → 16.1.3
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/Config.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +7 -7
package/lib/Config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Project, ProjectManifest, ProjectsGraph, Registries } from '@pnpm/types';
|
|
2
2
|
import type { Hooks } from '@pnpm/pnpmfile';
|
|
3
|
-
export
|
|
3
|
+
export type UniversalOptions = Pick<Config, 'color' | 'dir' | 'rawConfig' | 'rawLocalConfig'>;
|
|
4
4
|
export interface Config {
|
|
5
5
|
allProjects?: Project[];
|
|
6
6
|
selectedProjectsGraph?: ProjectsGraph;
|
package/lib/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Config, UniversalOptions } from './Config';
|
|
|
2
2
|
export * from './readLocalConfig';
|
|
3
3
|
export { Config, UniversalOptions };
|
|
4
4
|
export declare const types: any;
|
|
5
|
-
export
|
|
5
|
+
export type CliOptions = Record<string, unknown> & {
|
|
6
6
|
dir?: string;
|
|
7
7
|
};
|
|
8
8
|
export declare function getConfig(opts: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/config",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.3",
|
|
4
4
|
"description": "Gets configuration options for pnpm",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"lib",
|
|
9
9
|
"!*.map"
|
|
10
10
|
],
|
|
11
|
-
"repository": "https://github.com/pnpm/pnpm/blob/main/
|
|
11
|
+
"repository": "https://github.com/pnpm/pnpm/blob/main/config/config",
|
|
12
12
|
"keywords": [
|
|
13
13
|
"pnpm7",
|
|
14
14
|
"pnpm",
|
|
@@ -21,15 +21,15 @@
|
|
|
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/config/config#readme",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@pnpm/config.env-replace": "1.0.0",
|
|
27
27
|
"@pnpm/constants": "6.1.0",
|
|
28
28
|
"@pnpm/error": "4.0.0",
|
|
29
29
|
"@pnpm/git-utils": "0.1.0",
|
|
30
|
-
"@pnpm/matcher": "4.0.
|
|
30
|
+
"@pnpm/matcher": "4.0.1",
|
|
31
31
|
"@pnpm/npm-conf": "2.0.4",
|
|
32
|
-
"@pnpm/pnpmfile": "4.0.
|
|
32
|
+
"@pnpm/pnpmfile": "4.0.9",
|
|
33
33
|
"@pnpm/read-project-manifest": "4.0.2",
|
|
34
34
|
"@pnpm/types": "8.9.0",
|
|
35
35
|
"camelcase": "^6.3.0",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"which": "^2.0.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@pnpm/config": "16.1.
|
|
49
|
+
"@pnpm/config": "16.1.3",
|
|
50
50
|
"@pnpm/prepare": "0.0.57",
|
|
51
51
|
"@pnpm/test-fixtures": "0.0.26",
|
|
52
52
|
"@types/is-windows": "^1.0.0",
|
|
53
53
|
"@types/ramda": "0.28.15",
|
|
54
54
|
"@types/which": "^2.0.1",
|
|
55
|
-
"symlink-dir": "^5.0
|
|
55
|
+
"symlink-dir": "^5.1.0"
|
|
56
56
|
},
|
|
57
57
|
"funding": "https://opencollective.com/pnpm",
|
|
58
58
|
"exports": {
|