@markdy/cli 0.8.24 → 0.8.26

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/dist/index.js +1 -1
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -394,7 +394,7 @@ async function importCommand(parsed, io) {
394
394
  } else if (formatFlag === "terraform" || ext === ".tfstate" || (content.includes("terraform_version") || content.includes('"resources":'))) {
395
395
  markdyCode = compat.transpileTerraformStateToMarkdy(content, title);
396
396
  } else if (formatFlag === "drawio" || ext === ".drawio" || ext === ".xml" && content.includes("<mxCell")) {
397
- markdyCode = compat.transpileDrawioToMarkdy(content, title).code;
397
+ markdyCode = (await compat.transpileDrawioToMarkdy(content, title)).code;
398
398
  } else {
399
399
  markdyCode = compat.transpileMermaidToMarkdy(content, title).code;
400
400
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markdy/cli",
3
- "version": "0.8.24",
3
+ "version": "0.8.26",
4
4
  "description": "First-party CLI for diagram-native MarkdyScript diagrams: lint, format, explain, render, and preview.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -42,10 +42,10 @@
42
42
  "access": "public"
43
43
  },
44
44
  "dependencies": {
45
- "@markdy/compat": "0.8.24",
46
- "@markdy/renderer-dom": "0.8.24",
47
- "@markdy/stdlib-systems": "0.8.24",
48
- "@markdy/core": "0.8.24"
45
+ "@markdy/compat": "0.8.26",
46
+ "@markdy/stdlib-systems": "0.8.26",
47
+ "@markdy/renderer-dom": "0.8.26",
48
+ "@markdy/core": "0.8.26"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/node": "^25.9.5",