@pnpm/config 13.9.0 → 13.10.0

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/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  ## Installation
10
10
 
11
11
  ```sh
12
- <pnpm|npm|yarn> add @pnpm/config
12
+ pnpm add @pnpm/config
13
13
  ```
14
14
 
15
15
  ## Usage
package/lib/Config.d.ts CHANGED
@@ -5,6 +5,7 @@ export interface Config {
5
5
  allProjects?: Project[];
6
6
  selectedProjectsGraph?: ProjectsGraph;
7
7
  allowNew: boolean;
8
+ autoInstallPeers?: boolean;
8
9
  bail: boolean;
9
10
  color: 'always' | 'auto' | 'never';
10
11
  cliOptions: Record<string, any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/config",
3
- "version": "13.9.0",
3
+ "version": "13.10.0",
4
4
  "description": "Gets configuration options for pnpm",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -26,9 +26,9 @@
26
26
  "@pnpm/constants": "5.0.0",
27
27
  "@pnpm/error": "2.0.0",
28
28
  "@pnpm/global-bin-dir": "3.0.0",
29
- "@pnpm/pnpmfile": "1.2.3",
30
- "@pnpm/read-project-manifest": "2.0.10",
31
- "@pnpm/types": "7.8.0",
29
+ "@pnpm/pnpmfile": "1.2.4",
30
+ "@pnpm/read-project-manifest": "2.0.11",
31
+ "@pnpm/types": "7.9.0",
32
32
  "@zkochan/npm-conf": "2.0.2",
33
33
  "camelcase": "^6.2.0",
34
34
  "can-write-to-dir": "^1.1.1",
@@ -39,7 +39,8 @@
39
39
  "which": "^2.0.2"
40
40
  },
41
41
  "devDependencies": {
42
- "@pnpm/prepare": "0.0.32",
42
+ "@pnpm/config": "13.10.0",
43
+ "@pnpm/prepare": "0.0.33",
43
44
  "@types/ramda": "0.27.39",
44
45
  "@types/which": "^2.0.0",
45
46
  "symlink-dir": "^5.0.0"
@@ -50,8 +51,8 @@
50
51
  "test-with-preview": "ts-node test",
51
52
  "_test": "jest",
52
53
  "test": "pnpm run compile && pnpm run _test",
53
- "start": "pnpm tsc --watch",
54
+ "start": "tsc --watch",
54
55
  "compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
55
56
  },
56
- "readme": "# @pnpm/config\n\n> Gets configution options for pnpm\n\n<!--@shields('npm')-->\n[![npm version](https://img.shields.io/npm/v/@pnpm/config.svg)](https://www.npmjs.com/package/@pnpm/config)\n<!--/@-->\n\n## Installation\n\n```sh\n<pnpm|npm|yarn> add @pnpm/config\n```\n\n## Usage\n\n```ts\nimport getConfig from '@pnpm/config'\n\ngetConfig().then(pnpmConfig => console.log(pnpmConfig))\n```\n\n## License\n\nMIT\n"
57
+ "readme": "# @pnpm/config\n\n> Gets configution options for pnpm\n\n<!--@shields('npm')-->\n[![npm version](https://img.shields.io/npm/v/@pnpm/config.svg)](https://www.npmjs.com/package/@pnpm/config)\n<!--/@-->\n\n## Installation\n\n```sh\npnpm add @pnpm/config\n```\n\n## Usage\n\n```ts\nimport getConfig from '@pnpm/config'\n\ngetConfig().then(pnpmConfig => console.log(pnpmConfig))\n```\n\n## License\n\nMIT\n"
57
58
  }