@eminent337/aery 0.1.32 → 0.1.33

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.
@@ -2786,7 +2786,7 @@ export class InteractiveMode {
2786
2786
  return;
2787
2787
  }
2788
2788
  const currentText = this.editor.getExpandedText?.() ?? this.editor.getText();
2789
- const tmpFile = path.join(os.tmpdir(), `aery-editor-${Date.now()}.pi.md`);
2789
+ const tmpFile = path.join(os.tmpdir(), `aery-editor-${Date.now()}.aery.md`);
2790
2790
  try {
2791
2791
  // Write current content to temp file
2792
2792
  fs.writeFileSync(tmpFile, currentText, "utf-8");