@pnpm/plugin-commands-doctor 3.0.16 → 3.0.18
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/doctor.js +4 -4
- package/lib/doctor.js.map +1 -1
- package/package.json +6 -5
package/lib/doctor.js
CHANGED
|
@@ -3,7 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.commandNames = exports.shorthands = exports.rcOptionsTypes = void 0;
|
|
7
|
+
exports.cliOptionsTypes = cliOptionsTypes;
|
|
8
|
+
exports.help = help;
|
|
9
|
+
exports.handler = handler;
|
|
7
10
|
const render_help_1 = __importDefault(require("render-help"));
|
|
8
11
|
const cli_utils_1 = require("@pnpm/cli-utils");
|
|
9
12
|
const logger_1 = require("@pnpm/logger");
|
|
@@ -11,7 +14,6 @@ exports.rcOptionsTypes = cliOptionsTypes;
|
|
|
11
14
|
function cliOptionsTypes() {
|
|
12
15
|
return {};
|
|
13
16
|
}
|
|
14
|
-
exports.cliOptionsTypes = cliOptionsTypes;
|
|
15
17
|
exports.shorthands = {};
|
|
16
18
|
exports.commandNames = ['doctor'];
|
|
17
19
|
function help() {
|
|
@@ -21,7 +23,6 @@ function help() {
|
|
|
21
23
|
usages: ['pnpm doctor [options]'],
|
|
22
24
|
});
|
|
23
25
|
}
|
|
24
|
-
exports.help = help;
|
|
25
26
|
async function handler(opts) {
|
|
26
27
|
const { failedToLoadBuiltInConfig } = opts;
|
|
27
28
|
if (failedToLoadBuiltInConfig) {
|
|
@@ -32,5 +33,4 @@ async function handler(opts) {
|
|
|
32
33
|
});
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
|
-
exports.handler = handler;
|
|
36
36
|
//# sourceMappingURL=doctor.js.map
|
package/lib/doctor.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doctor.js","sourceRoot":"","sources":["../src/doctor.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"doctor.js","sourceRoot":"","sources":["../src/doctor.ts"],"names":[],"mappings":";;;;;;AAOA,0CAEC;AAMD,oBAMC;AAED,0BAWC;AAlCD,8DAAoC;AACpC,+CAAyC;AACzC,yCAAqC;AAGxB,QAAA,cAAc,GAAG,eAAe,CAAA;AAE7C,SAAgB,eAAe;IAC7B,OAAO,EAAE,CAAA;AACX,CAAC;AAEY,QAAA,UAAU,GAAG,EAAE,CAAA;AAEf,QAAA,YAAY,GAAG,CAAC,QAAQ,CAAC,CAAA;AAEtC,SAAgB,IAAI;IAClB,OAAO,IAAA,qBAAU,EAAC;QAChB,WAAW,EAAE,iCAAiC;QAC9C,GAAG,EAAE,IAAA,mBAAO,EAAC,QAAQ,CAAC;QACtB,MAAM,EAAE,CAAC,uBAAuB,CAAC;KAClC,CAAC,CAAA;AACJ,CAAC;AAEM,KAAK,UAAU,OAAO,CAC3B,IAA+C;IAE/C,MAAM,EAAE,yBAAyB,EAAE,GAAG,IAAI,CAAA;IAC1C,IAAI,yBAAyB,EAAE,CAAC;QAC9B,0IAA0I;QAC1I,eAAM,CAAC,IAAI,CAAC;YACV,OAAO,EAAE,uOAAuO;YAChP,MAAM,EAAE,OAAO,CAAC,GAAG,EAAE;SACtB,CAAC,CAAA;IACJ,CAAC;AACH,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/plugin-commands-doctor",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.18",
|
|
4
4
|
"description": "Commands for checks of known common issues ",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -24,14 +24,15 @@
|
|
|
24
24
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-doctor#readme",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"render-help": "^1.0.3",
|
|
27
|
-
"@pnpm/cli-utils": "4.0.
|
|
28
|
-
"@pnpm/config": "21.8.
|
|
27
|
+
"@pnpm/cli-utils": "4.0.2",
|
|
28
|
+
"@pnpm/config": "21.8.1"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@pnpm/logger": "^5.
|
|
31
|
+
"@pnpm/logger": "^5.1.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@pnpm/
|
|
34
|
+
"@pnpm/logger": "5.2.0",
|
|
35
|
+
"@pnpm/plugin-commands-doctor": "3.0.18"
|
|
35
36
|
},
|
|
36
37
|
"funding": "https://opencollective.com/pnpm",
|
|
37
38
|
"exports": {
|