palabra 2.7.3 → 2.7.5

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.05.01, v2.7.5
2
+
3
+ fix:
4
+ - 93f0c64 palabra: help
5
+
6
+ 2026.05.01, v2.7.4
7
+
8
+ fix:
9
+ - 8168b91 palabra: remove
10
+
1
11
  2026.05.01, v2.7.3
2
12
 
3
13
  fix:
package/help.json CHANGED
@@ -2,5 +2,5 @@
2
2
  "-h, --help ": "display this help and exit",
3
3
  "-v, --version ": "output version information and exit",
4
4
  "i[nstall] ": "install letra",
5
- "r[remove] ": "remove letra"
5
+ "r[emove] ": "remove letra"
6
6
  }
package/lib/cli/borrar.js CHANGED
@@ -7,8 +7,8 @@ export const borrar = (nombres, {directorio}) => {
7
7
  const dir = join(directorio, nombre);
8
8
  const bin = join(directorio, '..', 'bin', nombre);
9
9
 
10
- commands.push(`rm rf ${dir}`);
11
- commands.push(`rm rf ${bin}`);
10
+ commands.push(`rm -rf ${dir}`);
11
+ commands.push(`rm -rf ${bin}`);
12
12
  }
13
13
 
14
14
  return commands.join(' && ');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palabra",
3
- "version": "2.7.3",
3
+ "version": "2.7.5",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Palabra software installer",