palabra 1.6.0 → 1.7.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,13 @@
1
+ 2026.04.07, v1.7.1
2
+
3
+ fix:
4
+ - f618396 npmignore: fixture
5
+
6
+ 2026.04.07, v1.7.0
7
+
8
+ feature:
9
+ - 34efaff nvim: add
10
+
1
11
  2026.04.07, v1.6.0
2
12
 
3
13
  feature:
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "nvim",
3
+ "version": "0.12.0",
4
+ "url": "https://github.com/neovim/neovim/releases/download/v{{ version }}/nvim-linux-x86_64.tar.gz"
5
+ }
package/lib/buscar.js CHANGED
@@ -22,7 +22,7 @@ export const buscar = async (name, values = {}) => {
22
22
  };
23
23
 
24
24
  async function importPalabra(name) {
25
- const {default: letra} = await import(`../letras/${name}.json`, {
25
+ const {default: letra} = await import(`../letras/${name}/${name}.json`, {
26
26
  with: {
27
27
  type: 'json',
28
28
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "palabra",
3
- "version": "1.6.0",
3
+ "version": "1.7.1",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Palabra software installer",
@@ -9,6 +9,9 @@
9
9
  "bin": {
10
10
  "palabra": "bin/palabra.js"
11
11
  },
12
+ "imports": {
13
+ "#test": "./test/create-test.js"
14
+ },
12
15
  "repository": {
13
16
  "type": "git",
14
17
  "url": "git+https://github.com/coderaiser/palabra.git"
@@ -39,6 +42,7 @@
39
42
  "@putout/test": "^15.0.0",
40
43
  "eslint": "^10.0.0",
41
44
  "eslint-plugin-putout": "^31.0.0",
45
+ "just-kebab-case": "^4.2.0",
42
46
  "madrun": "^13.0.0",
43
47
  "nodemon": "^3.0.1",
44
48
  "redlint": "^6.0.0",
File without changes
File without changes
File without changes
File without changes
File without changes