palabra 2.6.0 → 2.6.2

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,16 @@
1
+ 2026.04.26, v2.6.2
2
+
3
+ fix:
4
+ - 68ba6df palabra: wget: -c -nc -> -c
5
+
6
+ 2026.04.26, v2.6.1
7
+
8
+ fix:
9
+ - cf788b2 letras: gdu
10
+
11
+ feature:
12
+ - a9ee1d0 palabra: devDependencies: rm @putout/test
13
+
1
14
  2026.04.26, v2.6.0
2
15
 
3
16
  feature:
@@ -3,5 +3,7 @@
3
3
  "version": "5.35.0",
4
4
  "url": "https://github.com/dundee/gdu/releases/download/v{{ version }}/gdu_linux_amd64.tgz",
5
5
  "test": "gdu -v",
6
- "executable": true
6
+ "executable": true,
7
+ "bin": "{{ name }}",
8
+ "rename": "{{ name }}-linux-amd64"
7
9
  }
@@ -12,7 +12,6 @@ const exts = [
12
12
  ];
13
13
 
14
14
  const CONTINUE = '-c';
15
- const NOT_OVERWRITE = '-nc';
16
15
 
17
16
  export const isArchive = ({url}) => {
18
17
  if (!url)
@@ -38,7 +37,7 @@ export const extract = (letra) => {
38
37
  const tmpDir = '${XDG_CACHE_HOME:-/tmp}';
39
38
  const tmpFile = join(tmpDir, filename);
40
39
 
41
- commands.push(`wget ${CONTINUE} ${NOT_OVERWRITE} ${renderedURL} -O ${tmpFile}`);
40
+ commands.push(`wget ${CONTINUE} ${renderedURL} -O ${tmpFile}`);
42
41
  commands.push(`rm -rf ${directorio}/${name}`);
43
42
  commands.push(`mkdir -p ${directorio}/${name}`);
44
43
  commands.push(`tar xf ${tmpFile} -C ${renderedextractDirectory}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palabra",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Palabra software installer",
@@ -40,7 +40,6 @@
40
40
  "debugger"
41
41
  ],
42
42
  "devDependencies": {
43
- "@putout/test": "^15.0.0",
44
43
  "eslint": "^10.0.0",
45
44
  "eslint-plugin-putout": "^31.0.0",
46
45
  "just-kebab-case": "^4.2.0",