cspell-trie-lib 8.9.1 → 8.10.0

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.
@@ -1,4 +1,3 @@
1
- /// <reference types="node" resolution-mode="require"/>
2
1
  import { type ITrie } from './ITrie.js';
3
2
  export declare function decodeTrie(raw: string | Buffer): ITrie;
4
3
  //# sourceMappingURL=decodeTrie.d.ts.map
@@ -1,4 +1,3 @@
1
- /// <reference types="node" resolution-mode="require"/>
2
1
  import type { TrieData } from '../TrieData.js';
3
2
  export declare function decodeTrieData(raw: string | Buffer): TrieData;
4
3
  //# sourceMappingURL=decode.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-trie-lib",
3
- "version": "8.9.1",
3
+ "version": "8.10.0",
4
4
  "description": "Trie Data Structure to support cspell.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -13,13 +13,14 @@
13
13
  },
14
14
  "files": [
15
15
  "dist",
16
- "!**/*.tsbuildInfo",
17
16
  "!**/__mocks__",
18
- "!**/perf/**",
19
- "!**/test/**",
20
- "!**/*.test.*",
17
+ "!**/*.map",
18
+ "!**/*.perf.*",
21
19
  "!**/*.spec.*",
22
- "!**/*.map"
20
+ "!**/*.test.*",
21
+ "!**/*.tsbuildInfo",
22
+ "!**/perf/**",
23
+ "!**/test/**"
23
24
  ],
24
25
  "scripts": {
25
26
  "clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
@@ -49,18 +50,18 @@
49
50
  },
50
51
  "homepage": "https://github.com/streetsidesoftware/cspell#readme",
51
52
  "dependencies": {
52
- "@cspell/cspell-pipe": "8.9.1",
53
- "@cspell/cspell-types": "8.9.1",
53
+ "@cspell/cspell-pipe": "8.10.0",
54
+ "@cspell/cspell-types": "8.10.0",
54
55
  "gensequence": "^7.0.0"
55
56
  },
56
57
  "engines": {
57
58
  "node": ">=18"
58
59
  },
59
60
  "devDependencies": {
60
- "@cspell/dict-en_us": "^4.3.22",
61
+ "@cspell/dict-en_us": "^4.3.23",
61
62
  "@cspell/dict-es-es": "^3.0.0",
62
63
  "@cspell/dict-nl-nl": "^2.3.0",
63
64
  "import-meta-resolve": "^4.1.0"
64
65
  },
65
- "gitHead": "f532c77cca4bfae380293c586f02f377354c850b"
66
+ "gitHead": "a5dde6ae7e2ac86ac956220d4b8c39a0e58e1bc6"
66
67
  }