palabra 1.17.1 → 1.18.0

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,8 @@
1
+ 2026.04.11, v1.18.0
2
+
3
+ feature:
4
+ - 58c1b42 palabra: download to /tmp directory
5
+
1
6
  2026.04.11, v1.17.1
2
7
 
3
8
  fix:
@@ -23,11 +23,11 @@ export const extract = (letra) => {
23
23
  const renderedURL = rendy(url, letra);
24
24
  const filename = basename(renderedURL);
25
25
 
26
- commands.push(`wget ${renderedURL}`);
26
+ commands.push(`wget ${renderedURL} -O /tmp/${filename}`);
27
27
  commands.push(`rm -rf ${directorio}/${name}`);
28
28
  commands.push(`mkdir -p ${directorio}/${name}`);
29
- commands.push(`tar xf ${filename} -C ${directorio}`);
30
- commands.push(`rm ${filename}`);
29
+ commands.push(`tar xf /tmp/${filename} -C ${directorio}`);
30
+ commands.push(`rm /tmp/${filename}`);
31
31
 
32
32
  return commands;
33
33
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palabra",
3
- "version": "1.17.1",
3
+ "version": "1.18.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Palabra software installer",