@eminent337/aery 0.1.31 → 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.
- package/dist/core/tools/render-utils.d.ts.map +1 -1
- package/dist/core/tools/render-utils.js +1 -1
- package/dist/core/tools/render-utils.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +1 -1
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/modes/interactive/theme/catppuccin-mocha.json +81 -0
- package/dist/modes/interactive/theme/dracula.json +81 -0
- package/dist/modes/interactive/theme/nord.json +81 -0
- package/dist/modes/interactive/theme/tokyo-night.json +81 -0
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/custom-provider-qwen-cli/package.json +1 -1
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +2 -2
|
@@ -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()}.
|
|
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");
|