palabra 1.19.2 → 1.19.4

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.11, v1.19.4
2
+
3
+ fix:
4
+ - 0526924 palabra: letra: url
5
+
6
+ 2026.04.11, v1.19.3
7
+
8
+ fix:
9
+ - d119132 palabra: letras: yara
10
+
1
11
  2026.04.11, v1.19.2
2
12
 
3
13
  fix:
package/bin/palabra.js CHANGED
@@ -22,11 +22,11 @@ const instrucciones = args._.shift();
22
22
 
23
23
  let cmd = '';
24
24
 
25
- if (!instrucciones || instrucciones === 'i') {
25
+ if (!instrucciones || /^i(nstall)?$/.test(instrucciones)) {
26
26
  cmd = await instalar(args._, args);
27
- } else if (instrucciones === 'l') {
27
+ } else if (/^l(ist)?$/.test(instrucciones)) {
28
28
  const list = await readdir(new URL('../letras', import.meta.url));
29
- console.log(list);
29
+ console.log(list.join(' '));
30
30
  process.exit(0);
31
31
  } else {
32
32
  console.error('palabra i [letra1, letra2, ..., letraN]');
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bin",
3
- "version": "v0.24.3",
4
- "url": "https://github.com/marcosnils/bin/releases/download/{{ version }}/bin_{{ version }}_linux_amd64",
3
+ "version": "0.24.3",
4
+ "url": "https://github.com/marcosnils/bin/releases/download/v{{ version }}/bin_{{ version }}_linux_amd64",
5
5
  "bin": {
6
6
  "bin": "bin"
7
7
  },
@@ -7,7 +7,7 @@
7
7
  "yr": "yr"
8
8
  },
9
9
  "commands": [
10
- "mkdir -f {{ directorio }}/yara",
10
+ "mkdir -p {{ directorio }}/yara",
11
11
  "mv -f {{ directorio }}/yr {{ directorio }}/yara/"
12
12
  ]
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palabra",
3
- "version": "1.19.2",
3
+ "version": "1.19.4",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Palabra software installer",