cspell-lib 10.0.0 → 10.0.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.
@@ -12,16 +12,18 @@ export class SubstitutionTransformer {
12
12
  if (!this.#trie)
13
13
  return text;
14
14
  const transformed = this.transformString(text.text);
15
+ const rawText = text.rawText ?? text.text;
15
16
  const result = {
16
17
  ...text,
17
18
  text: transformed.text,
18
19
  map: mergeSourceMaps(text.map, transformed.map),
20
+ rawText,
19
21
  };
20
22
  return result;
21
23
  }
22
24
  transformString(text) {
23
25
  if (!this.#trie) {
24
- return { text, range: [0, text.length] };
26
+ return { text, range: [0, text.length], rawText: text };
25
27
  }
26
28
  const map = [0, 0];
27
29
  let repText = '';
@@ -36,7 +38,7 @@ export class SubstitutionTransformer {
36
38
  lastEnd = edit.range[1];
37
39
  }
38
40
  if (lastEnd === 0) {
39
- return { text, range: [0, text.length] };
41
+ return { text, range: [0, text.length], rawText: text };
40
42
  }
41
43
  if (lastEnd < text.length) {
42
44
  repText += text.slice(lastEnd);
@@ -46,6 +48,7 @@ export class SubstitutionTransformer {
46
48
  text: repText,
47
49
  range: [0, text.length],
48
50
  map: mapOffsetPairsToSourceMap(map),
51
+ rawText: text,
49
52
  };
50
53
  return result;
51
54
  }
@@ -95,14 +95,15 @@ function genResult(text, issues, includeRanges) {
95
95
  const issue = issues[i];
96
96
  const endPos = issue.offset;
97
97
  const text = span.text.slice(0, endPos - span.startPos);
98
- const endPosError = issue.offset + issue.text.length;
98
+ const endPosError = issue.offset + (issue.length ?? issue.text.length);
99
+ const issueText = span.text.slice(endPos - span.startPos, endPosError - span.startPos);
99
100
  yield { ...span, text, endPos };
100
101
  yield {
101
102
  ...span,
102
103
  isError: true,
103
104
  startPos: issue.offset,
104
105
  endPos: endPosError,
105
- text: issue.text,
106
+ text: issueText,
106
107
  };
107
108
  span.text = span.text.slice(endPosError - span.startPos);
108
109
  span.startPos = endPosError;
@@ -366,7 +366,15 @@ export function textValidatorFactory(dict, options) {
366
366
  const { text, offset, isFlagged, isFound, suggestionsEx, hasPreferredSuggestions, hasSimpleSuggestions } = vr;
367
367
  const r = mapRangeBackToOriginalPos([offset, offset + text.length], map);
368
368
  const range = [r[0] + srcOffset, r[1] + srcOffset];
369
- return { text, range, isFlagged, isFound, suggestionsEx, hasPreferredSuggestions, hasSimpleSuggestions };
369
+ return {
370
+ text,
371
+ range,
372
+ isFlagged,
373
+ isFound,
374
+ suggestionsEx,
375
+ hasPreferredSuggestions,
376
+ hasSimpleSuggestions,
377
+ };
370
378
  }
371
379
  return [...lineValidatorFn(lineSegment)].map(mapBackToOriginSimple);
372
380
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "provenance": true
6
6
  },
7
- "version": "10.0.0",
7
+ "version": "10.0.1",
8
8
  "description": "A library of useful functions used across various cspell tools.",
9
9
  "type": "module",
10
10
  "sideEffects": false,
@@ -75,22 +75,22 @@
75
75
  },
76
76
  "homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-lib#readme",
77
77
  "dependencies": {
78
- "@cspell/cspell-bundled-dicts": "10.0.0",
79
- "@cspell/cspell-performance-monitor": "10.0.0",
80
- "@cspell/cspell-pipe": "10.0.0",
81
- "@cspell/cspell-resolver": "10.0.0",
82
- "@cspell/cspell-types": "10.0.0",
83
- "@cspell/dynamic-import": "10.0.0",
84
- "@cspell/filetypes": "10.0.0",
85
- "@cspell/rpc": "10.0.0",
86
- "@cspell/strong-weak-map": "10.0.0",
87
- "@cspell/url": "10.0.0",
88
- "cspell-config-lib": "10.0.0",
89
- "cspell-dictionary": "10.0.0",
90
- "cspell-glob": "10.0.0",
91
- "cspell-grammar": "10.0.0",
92
- "cspell-io": "10.0.0",
93
- "cspell-trie-lib": "10.0.0",
78
+ "@cspell/cspell-bundled-dicts": "10.0.1",
79
+ "@cspell/cspell-performance-monitor": "10.0.1",
80
+ "@cspell/cspell-pipe": "10.0.1",
81
+ "@cspell/cspell-resolver": "10.0.1",
82
+ "@cspell/cspell-types": "10.0.1",
83
+ "@cspell/dynamic-import": "10.0.1",
84
+ "@cspell/filetypes": "10.0.1",
85
+ "@cspell/rpc": "10.0.1",
86
+ "@cspell/strong-weak-map": "10.0.1",
87
+ "@cspell/url": "10.0.1",
88
+ "cspell-config-lib": "10.0.1",
89
+ "cspell-dictionary": "10.0.1",
90
+ "cspell-glob": "10.0.1",
91
+ "cspell-grammar": "10.0.1",
92
+ "cspell-io": "10.0.1",
93
+ "cspell-trie-lib": "10.0.1",
94
94
  "env-paths": "^4.0.0",
95
95
  "gensequence": "^8.0.8",
96
96
  "import-fresh": "^4.0.0",
@@ -103,7 +103,7 @@
103
103
  "node": ">=22.18.0"
104
104
  },
105
105
  "devDependencies": {
106
- "@cspell/cspell-tools": "10.0.0",
106
+ "@cspell/cspell-tools": "10.0.1",
107
107
  "@cspell/dict-cpp": "^7.0.2",
108
108
  "@cspell/dict-csharp": "^4.0.8",
109
109
  "@cspell/dict-css": "^4.1.1",
@@ -115,12 +115,12 @@
115
115
  "@cspell/dict-python": "^4.2.26",
116
116
  "@cspell/dictionary-bundler-plugin": "",
117
117
  "@types/configstore": "^6.0.2",
118
- "comment-json": "^4.6.2",
118
+ "comment-json": "^5.0.0",
119
119
  "configstore": "^8.0.0",
120
120
  "cspell-dict-nl-nl": "^1.1.2",
121
121
  "leaked-handles": "^5.2.0",
122
- "lorem-ipsum": "^2.0.8",
122
+ "lorem-ipsum": "^2.0.10",
123
123
  "perf-insight": "^2.0.1"
124
124
  },
125
- "gitHead": "6ddfd576b6bb554a7cb8dba1ab053a0b6ff8021f"
125
+ "gitHead": "0f43abf29e5da0ecbcb08214055cdc1e3267c3ea"
126
126
  }