@lark-apaas/openclaw-scripts-diagnose-cli 0.1.18-alpha.6 → 0.1.18-alpha.7
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 +10 -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.18-alpha.
|
|
55
|
+
return "0.1.18-alpha.7";
|
|
56
56
|
}
|
|
57
57
|
//#endregion
|
|
58
58
|
//#region src/rule-engine/base.ts
|
|
@@ -3347,6 +3347,14 @@ function cleanupLegacyResiduals(ctx) {
|
|
|
3347
3347
|
//#endregion
|
|
3348
3348
|
//#region src/version-compat.ts
|
|
3349
3349
|
const VERSION_COMPAT_MAP = Object.freeze([
|
|
3350
|
+
{
|
|
3351
|
+
openclawLarkVersion: "2026.5.20",
|
|
3352
|
+
minOpenclawVersion: "2026.5.7"
|
|
3353
|
+
},
|
|
3354
|
+
{
|
|
3355
|
+
openclawLarkVersion: "2026.5.13",
|
|
3356
|
+
minOpenclawVersion: "2026.5.7"
|
|
3357
|
+
},
|
|
3350
3358
|
{
|
|
3351
3359
|
openclawLarkVersion: "2026.5.12",
|
|
3352
3360
|
minOpenclawVersion: "2026.5.7"
|
|
@@ -11236,7 +11244,7 @@ async function reportCliRun(opts) {
|
|
|
11236
11244
|
//#region src/help.ts
|
|
11237
11245
|
const BIN = "mclaw-diagnose";
|
|
11238
11246
|
function versionBanner() {
|
|
11239
|
-
return `v0.1.18-alpha.
|
|
11247
|
+
return `v0.1.18-alpha.7`;
|
|
11240
11248
|
}
|
|
11241
11249
|
const COMMANDS = [
|
|
11242
11250
|
{
|
package/package.json
CHANGED