palabra 2.15.2 → 2.16.1

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,14 @@
1
+ 2026.06.28, v2.16.1
2
+
3
+ fix:
4
+ - 2f6b659 palabra: arch
5
+
6
+ 2026.06.28, v2.16.0
7
+
8
+ feature:
9
+ - dc84c95 palabra: nvim: add support of arm
10
+ - 18e5082 letras: nvim: v0.12.3
11
+
1
12
  2026.06.04, v2.15.2
2
13
 
3
14
  fix:
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "nvim",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "bin": {
5
5
  "nvim": "bin/nvim"
6
6
  },
7
- "url": "https://github.com/neovim/neovim/releases/download/v{{ version }}/nvim-linux-x86_64.tar.gz",
8
- "rename": "nvim-linux-x86_64",
7
+ "url": "https://github.com/neovim/neovim/releases/download/v{{ version }}/nvim-linux-{{ arch }}.tar.gz",
8
+ "rename": "nvim-linux-{{ arch }}",
9
9
  "test": "nvim -v"
10
10
  }
@@ -1,7 +1,10 @@
1
1
  import os from 'node:os';
2
- import process from 'node:process';
2
+ import process, {env} from 'node:process';
3
3
 
4
4
  const isString = (a) => typeof a === 'string';
5
+ const prepareArch = () => {
6
+ return env.ARCH || process.arch;
7
+ };
5
8
 
6
9
  export const prepare = (letra, overrides) => {
7
10
  const {
@@ -11,11 +14,13 @@ export const prepare = (letra, overrides) => {
11
14
  bin = parseBin(letra),
12
15
  hogar = name,
13
16
  afterInstall = [],
17
+ arch = prepareArch(),
14
18
  } = letra;
15
19
 
16
20
  const url = parseURL(letra, overrides);
17
21
 
18
22
  return {
23
+ arch,
19
24
  ...letra,
20
25
  confirmar,
21
26
  directorio,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palabra",
3
- "version": "2.15.2",
3
+ "version": "2.16.1",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Palabra software installer",