execonvert 0.4.1 → 0.4.2
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/CHANGELOG.md +7 -0
- package/dist/cli/cli/execonvert.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,13 @@ Categorías usadas: **Añadido**, **Cambiado**, **Corregido**, **Eliminado**.
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.4.2] - 2026-06-25
|
|
13
|
+
|
|
14
|
+
### Corregido
|
|
15
|
+
- `CLI_VERSION` ya no está hardcodeado: el script de build lo inyecta desde
|
|
16
|
+
`package.json` al compilar, por lo que versión del binario y versión del
|
|
17
|
+
paquete npm siempre coinciden sin intervención manual.
|
|
18
|
+
|
|
12
19
|
## [0.4.1] - 2026-06-25
|
|
13
20
|
|
|
14
21
|
### Corregido
|
|
@@ -9,7 +9,7 @@ import { convertElpxToMarkdown } from '../src/elpx-markdown.js';
|
|
|
9
9
|
import { convertElpToElpx } from '../src/legacy-elp.js';
|
|
10
10
|
import { convertMarkdownToElpx } from '../src/markdown-import.js';
|
|
11
11
|
import { installCliRuntime } from './runtime.js';
|
|
12
|
-
const CLI_VERSION = '0.4.
|
|
12
|
+
const CLI_VERSION = '0.4.2';
|
|
13
13
|
const cliMessages = {
|
|
14
14
|
es: {
|
|
15
15
|
'help.title': 'CLI de eXeConvert',
|