cspell-trie-lib 9.0.0 → 9.0.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -988,7 +988,7 @@ function calcVisualLetterMasks(groups) {
988
988
  }
989
989
 
990
990
  // src/lib/distance/distanceAStarWeighted.ts
991
- import assert from "node:assert";
991
+ import assert from "assert";
992
992
 
993
993
  // src/lib/distance/weightedMaps.ts
994
994
  var matchPossibleWordSeparators = /[+∙•・●]/g;
@@ -1914,7 +1914,7 @@ function searchTrieCostNodesMatchingTrie2(trie, node, emit, s = "") {
1914
1914
  }
1915
1915
 
1916
1916
  // src/lib/TrieBlob/FastTrieBlobBuilder.ts
1917
- import assert2 from "node:assert";
1917
+ import assert2 from "assert";
1918
1918
 
1919
1919
  // src/lib/constants.ts
1920
1920
  var COMPOUND_FIX = "+";
@@ -2554,7 +2554,7 @@ var FastTrieBlobIRoot = class extends FastTrieBlobINode {
2554
2554
  };
2555
2555
 
2556
2556
  // src/lib/TrieBlob/TrieBlob.ts
2557
- import { endianness } from "node:os";
2557
+ import { endianness } from "os";
2558
2558
 
2559
2559
  // src/lib/TrieBlob/TrieBlobIRoot.ts
2560
2560
  var TrieBlobInternals = class {
@@ -4013,7 +4013,7 @@ function buildITrieFromWords(words, info = {}) {
4013
4013
  }
4014
4014
 
4015
4015
  // src/lib/utils/isValidChar.ts
4016
- import assert3 from "node:assert";
4016
+ import assert3 from "assert";
4017
4017
  function isValidChar(char) {
4018
4018
  return isValidUtf16Character(char);
4019
4019
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "provenance": true
6
6
  },
7
- "version": "9.0.0",
7
+ "version": "9.0.2",
8
8
  "description": "Trie Data Structure to support cspell.",
9
9
  "type": "module",
10
10
  "sideEffects": false,
@@ -59,18 +59,18 @@
59
59
  },
60
60
  "homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-trie-lib#readme",
61
61
  "dependencies": {
62
- "@cspell/cspell-pipe": "9.0.0",
63
- "@cspell/cspell-types": "9.0.0",
62
+ "@cspell/cspell-pipe": "9.0.2",
63
+ "@cspell/cspell-types": "9.0.2",
64
64
  "gensequence": "^7.0.0"
65
65
  },
66
66
  "engines": {
67
67
  "node": ">=20"
68
68
  },
69
69
  "devDependencies": {
70
- "@cspell/dict-en_us": "^4.4.6",
70
+ "@cspell/dict-en_us": "^4.4.8",
71
71
  "@cspell/dict-es-es": "^3.0.3",
72
72
  "@cspell/dict-nl-nl": "^2.4.0",
73
73
  "import-meta-resolve": "^4.1.0"
74
74
  },
75
- "gitHead": "f7c4be398734894d817d9b60214731a516cff7d2"
75
+ "gitHead": "39dbd9ab9b8943a023d9eda7f65f81e822f939b5"
76
76
  }