cspell-trie-lib 6.13.1 → 6.13.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.
@@ -22,7 +22,7 @@ export interface ParseDictionaryOptions {
22
22
  stripCaseAndAccents: boolean;
23
23
  /**
24
24
  * Tell the parser to keep non-case/accent version in both forms.
25
- * @default true
25
+ * @default false
26
26
  */
27
27
  stripCaseAndAccentsKeepDuplicate: boolean;
28
28
  /**
@@ -14,7 +14,7 @@ const _defaultOptions = {
14
14
  caseInsensitivePrefix: constants_1.CASE_INSENSITIVE_PREFIX,
15
15
  keepExactPrefix: constants_1.IDENTITY_PREFIX,
16
16
  stripCaseAndAccents: true,
17
- stripCaseAndAccentsKeepDuplicate: true,
17
+ stripCaseAndAccentsKeepDuplicate: false,
18
18
  stripCaseAndAccentsOnForbidden: false,
19
19
  split: false,
20
20
  splitKeepBoth: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-trie-lib",
3
- "version": "6.13.1",
3
+ "version": "6.13.2",
4
4
  "description": "Trie Data Structure to support cspell.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,8 +37,8 @@
37
37
  },
38
38
  "homepage": "https://github.com/streetsidesoftware/cspell#readme",
39
39
  "dependencies": {
40
- "@cspell/cspell-pipe": "6.13.1",
41
- "@cspell/cspell-types": "6.13.1",
40
+ "@cspell/cspell-pipe": "6.13.2",
41
+ "@cspell/cspell-types": "6.13.2",
42
42
  "fs-extra": "^10.1.0",
43
43
  "gensequence": "^4.0.2"
44
44
  },
@@ -49,9 +49,9 @@
49
49
  "@cspell/dict-en_us": "^3.0.0",
50
50
  "@cspell/dict-es-es": "^2.2.2",
51
51
  "@types/fs-extra": "^9.0.13",
52
- "@types/node": "^18.11.7",
52
+ "@types/node": "^18.11.8",
53
53
  "jest": "^29.2.2",
54
54
  "rimraf": "^3.0.2"
55
55
  },
56
- "gitHead": "31ce9bdaa982e4d7cbe4001dead0810fa546fa7d"
56
+ "gitHead": "269c26afe8c5829b09e5ef731a30a2949d7c63e1"
57
57
  }