@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 +1 -1
- package/lib/Config.d.ts +1 -0
- package/package.json +8 -7
package/README.md
CHANGED
package/lib/Config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/config",
|
|
3
|
-
"version": "13.
|
|
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.
|
|
30
|
-
"@pnpm/read-project-manifest": "2.0.
|
|
31
|
-
"@pnpm/types": "7.
|
|
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/
|
|
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": "
|
|
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[](https://www.npmjs.com/package/@pnpm/config)\n<!--/@-->\n\n## Installation\n\n```sh\
|
|
57
|
+
"readme": "# @pnpm/config\n\n> Gets configution options for pnpm\n\n<!--@shields('npm')-->\n[](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
|
}
|