cspell-trie-lib 7.3.7 → 7.3.8

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.
@@ -39,7 +39,6 @@ function* hintedWalkerNext(root, ignoreCase, hint, compoundingMethod, emitWordSe
39
39
  .filter((a) => a in c)
40
40
  .map((letter) => ({
41
41
  letter,
42
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
43
42
  node: c[letter],
44
43
  hintOffset: hintOffset + 1,
45
44
  }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-trie-lib",
3
- "version": "7.3.7",
3
+ "version": "7.3.8",
4
4
  "description": "Trie Data Structure to support cspell.",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
@@ -46,18 +46,18 @@
46
46
  },
47
47
  "homepage": "https://github.com/streetsidesoftware/cspell#readme",
48
48
  "dependencies": {
49
- "@cspell/cspell-pipe": "7.3.7",
50
- "@cspell/cspell-types": "7.3.7",
49
+ "@cspell/cspell-pipe": "7.3.8",
50
+ "@cspell/cspell-types": "7.3.8",
51
51
  "gensequence": "^6.0.0"
52
52
  },
53
53
  "engines": {
54
54
  "node": ">=16"
55
55
  },
56
56
  "devDependencies": {
57
- "@cspell/dict-en_us": "^4.3.8",
58
- "@cspell/dict-es-es": "^2.2.6",
59
- "@cspell/dict-nl-nl": "^2.2.9",
57
+ "@cspell/dict-en_us": "^4.3.9",
58
+ "@cspell/dict-es-es": "^2.2.7",
59
+ "@cspell/dict-nl-nl": "^2.2.10",
60
60
  "import-meta-resolve": "^3.0.0"
61
61
  },
62
- "gitHead": "22246a7924b9ae27ae39f0d0217890a1c2736f68"
62
+ "gitHead": "6717f5726b74c695d9023dbccf6f7e8a7ac6361f"
63
63
  }