palabra 1.23.8 → 1.23.10

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 CHANGED
@@ -1,3 +1,13 @@
1
+ 2026.04.12, v1.23.10
2
+
3
+ fix:
4
+ - 950a92e palabra: letras: test: env
5
+
6
+ 2026.04.12, v1.23.9
7
+
8
+ fix:
9
+ - 8e95ae0 palabra: letras: fasm: test
10
+
1
11
  2026.04.12, v1.23.8
2
12
 
3
13
  fix:
@@ -3,5 +3,5 @@
3
3
  "version": "1.73.32",
4
4
  "url": "https://flatassembler.net/fasm-{{ version }}.tgz",
5
5
  "bin": "fasm.x64",
6
- "test": "fasm -v"
6
+ "test": "fasm {{ directorio }}/fasm/examples/elfexe/hello64.asm"
7
7
  }
@@ -79,10 +79,17 @@ export const parse = (letra) => {
79
79
 
80
80
  if (test)
81
81
  for (const testCommand of maybeArray(test)) {
82
- commands.push(rendy(
82
+ const cmd = rendy(
83
83
  testCommand,
84
84
  letra,
85
- ));
85
+ );
86
+
87
+ if (envLine) {
88
+ commands.push(`${envLine}${cmd}`);
89
+ continue;
90
+ }
91
+
92
+ commands.push(cmd);
86
93
  }
87
94
 
88
95
  return commands;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palabra",
3
- "version": "1.23.8",
3
+ "version": "1.23.10",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Palabra software installer",