@pnpm/client 6.1.0 → 6.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  ## Installation
10
10
 
11
11
  ```sh
12
- <pnpm|npm|yarn> add @pnpm/client
12
+ pnpm add @pnpm/client
13
13
  ```
14
14
 
15
15
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/client",
3
- "version": "6.1.0",
3
+ "version": "6.1.3",
4
4
  "description": "Creates the package resolve and fetch functions",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "engines": {
12
12
  "node": ">=12.17"
13
13
  },
14
- "repository": "https://github.com/pnpm/pnpm/blob/master/packages/client",
14
+ "repository": "https://github.com/pnpm/pnpm/blob/main/packages/client",
15
15
  "keywords": [
16
16
  "pnpm6",
17
17
  "pnpm",
@@ -22,19 +22,20 @@
22
22
  "bugs": {
23
23
  "url": "https://github.com/pnpm/pnpm/issues"
24
24
  },
25
- "homepage": "https://github.com/pnpm/pnpm/blob/master/packages/client#readme",
25
+ "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/client#readme",
26
26
  "dependencies": {
27
- "@pnpm/default-resolver": "14.0.9",
28
- "@pnpm/directory-fetcher": "1.0.4",
29
- "@pnpm/fetch": "4.2.3",
27
+ "@pnpm/default-resolver": "14.0.12",
28
+ "@pnpm/directory-fetcher": "1.0.7",
29
+ "@pnpm/fetch": "4.2.5",
30
30
  "@pnpm/fetching-types": "2.2.1",
31
- "@pnpm/git-fetcher": "4.1.13",
32
- "@pnpm/resolver-base": "8.1.4",
33
- "@pnpm/tarball-fetcher": "9.3.14",
31
+ "@pnpm/git-fetcher": "4.1.16",
32
+ "@pnpm/resolver-base": "8.1.6",
33
+ "@pnpm/tarball-fetcher": "9.3.17",
34
34
  "credentials-by-uri": "^2.1.0",
35
35
  "mem": "^8.0.0"
36
36
  },
37
37
  "devDependencies": {
38
+ "@pnpm/client": "6.1.3",
38
39
  "@pnpm/logger": "^4.0.0"
39
40
  },
40
41
  "funding": "https://opencollective.com/pnpm",
@@ -42,7 +43,6 @@
42
43
  "lint": "eslint src/**/*.ts test/**/*.ts",
43
44
  "_test": "jest",
44
45
  "test": "pnpm run compile && pnpm run _test",
45
- "compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
46
- },
47
- "readme": "# @pnpm/client\n\n> Creates the package resolve and fetch functions\n\n<!--@shields('npm')-->\n[![npm version](https://img.shields.io/npm/v/@pnpm/client.svg)](https://www.npmjs.com/package/@pnpm/client)\n<!--/@-->\n\n## Installation\n\n```sh\n<pnpm|npm|yarn> add @pnpm/client\n```\n\n## License\n\nMIT\n"
46
+ "compile": "tsc --build && pnpm run lint --fix"
47
+ }
48
48
  }