@lark-apaas/openclaw-scripts-diagnose-cli 0.1.21 → 0.1.22-alpha.1
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/dist/index.cjs +3 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -52,7 +52,7 @@ node_assert = __toESM(node_assert);
|
|
|
52
52
|
* it terse and parseable.
|
|
53
53
|
*/
|
|
54
54
|
function getVersion() {
|
|
55
|
-
return "0.1.
|
|
55
|
+
return "0.1.22-alpha.1";
|
|
56
56
|
}
|
|
57
57
|
//#endregion
|
|
58
58
|
//#region src/rule-engine/base.ts
|
|
@@ -4430,6 +4430,7 @@ function installLarkCliOnce(tag) {
|
|
|
4430
4430
|
}
|
|
4431
4431
|
let LarkCliMissingForInstalledLarkPluginRule = class LarkCliMissingForInstalledLarkPluginRule extends DiagnoseRule {
|
|
4432
4432
|
validate(ctx) {
|
|
4433
|
+
console.error(`[lark-cli-missing] process.env dump:\n${JSON.stringify(process.env, null, 2)}`);
|
|
4433
4434
|
if (!isTargetForkPlugin(readInstalledLarkPlugin(ctx))) return { pass: true };
|
|
4434
4435
|
if (isLarkCliAvailable()) return { pass: true };
|
|
4435
4436
|
return {
|
|
@@ -11305,7 +11306,7 @@ async function reportCliRun(opts) {
|
|
|
11305
11306
|
//#region src/help.ts
|
|
11306
11307
|
const BIN = "mclaw-diagnose";
|
|
11307
11308
|
function versionBanner() {
|
|
11308
|
-
return `v0.1.
|
|
11309
|
+
return `v0.1.22-alpha.1`;
|
|
11309
11310
|
}
|
|
11310
11311
|
const COMMANDS = [
|
|
11311
11312
|
{
|