cspell-lib 6.2.0-alpha.1 → 6.2.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,8 +1,8 @@
1
- import { CSpellSettingsWithSourceTrace, DictionaryDefinitionAugmented, DictionaryDefinitionCustom, DictionaryDefinitionPreferred, Parser } from '@cspell/cspell-types';
1
+ import { AdvancedCSpellSettingsWithSourceTrace, CSpellSettingsWithSourceTrace, DictionaryDefinitionAugmented, DictionaryDefinitionCustom, DictionaryDefinitionPreferred, Parser } from '@cspell/cspell-types';
2
2
  import { WeightMap } from 'cspell-trie-lib';
3
3
  import { OptionalOrUndefined } from '../util/types';
4
4
  export declare const SymbolCSpellSettingsInternal: unique symbol;
5
- export interface CSpellSettingsInternal extends Omit<CSpellSettingsWithSourceTrace, 'dictionaryDefinitions'> {
5
+ export interface CSpellSettingsInternal extends Omit<AdvancedCSpellSettingsWithSourceTrace, 'dictionaryDefinitions'> {
6
6
  [SymbolCSpellSettingsInternal]: true;
7
7
  dictionaryDefinitions?: DictionaryDefinitionInternal[];
8
8
  }
@@ -1,8 +1,8 @@
1
- import type { CSpellSettingsWithSourceTrace, Glob, ImportFileRef } from '@cspell/cspell-types';
1
+ import type { AdvancedCSpellSettingsWithSourceTrace, Glob, ImportFileRef } from '@cspell/cspell-types';
2
2
  import { CSpellSettingsInternal, CSpellSettingsInternalFinalized } from '../Models/CSpellSettingsInternalDef';
3
3
  import { OptionalOrUndefined } from '../util/types';
4
- declare type CSpellSettingsWST = CSpellSettingsWithSourceTrace;
5
- declare type CSpellSettingsWSTO = OptionalOrUndefined<CSpellSettingsWithSourceTrace>;
4
+ declare type CSpellSettingsWST = AdvancedCSpellSettingsWithSourceTrace;
5
+ declare type CSpellSettingsWSTO = OptionalOrUndefined<AdvancedCSpellSettingsWithSourceTrace>;
6
6
  declare type CSpellSettingsI = CSpellSettingsInternal;
7
7
  export declare const configSettingsFileVersion0_1 = "0.1";
8
8
  export declare const configSettingsFileVersion0_2 = "0.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-lib",
3
- "version": "6.2.0-alpha.1",
3
+ "version": "6.2.0",
4
4
  "description": "A library of useful functions used across various cspell tools.",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -48,16 +48,16 @@
48
48
  },
49
49
  "homepage": "https://github.com/streetsidesoftware/cspell#readme",
50
50
  "dependencies": {
51
- "@cspell/cspell-bundled-dicts": "^6.2.0-alpha.1",
52
- "@cspell/cspell-pipe": "^6.2.0-alpha.1",
53
- "@cspell/cspell-types": "^6.2.0-alpha.1",
51
+ "@cspell/cspell-bundled-dicts": "^6.2.0",
52
+ "@cspell/cspell-pipe": "^6.2.0",
53
+ "@cspell/cspell-types": "^6.2.0",
54
54
  "clear-module": "^4.1.2",
55
55
  "comment-json": "^4.2.2",
56
56
  "configstore": "^5.0.1",
57
57
  "cosmiconfig": "^7.0.1",
58
- "cspell-glob": "^6.2.0-alpha.1",
59
- "cspell-io": "^6.2.0-alpha.1",
60
- "cspell-trie-lib": "^6.2.0-alpha.1",
58
+ "cspell-glob": "^6.2.0",
59
+ "cspell-io": "^6.2.0",
60
+ "cspell-trie-lib": "^6.2.0",
61
61
  "fast-equals": "^4.0.1",
62
62
  "find-up": "^5.0.0",
63
63
  "fs-extra": "^10.1.0",
@@ -72,7 +72,7 @@
72
72
  "node": ">=14"
73
73
  },
74
74
  "devDependencies": {
75
- "@cspell/dict-cpp": "^3.1.0",
75
+ "@cspell/dict-cpp": "^3.1.1",
76
76
  "@cspell/dict-csharp": "^3.0.1",
77
77
  "@cspell/dict-css": "^1.0.13",
78
78
  "@cspell/dict-fa-ir": "^2.0.0",
@@ -92,5 +92,5 @@
92
92
  "rollup-plugin-dts": "^4.2.2",
93
93
  "ts-jest": "^28.0.5"
94
94
  },
95
- "gitHead": "bb1862e9d5116b64451e625eb002f835e2873f9b"
95
+ "gitHead": "ef9bf8e390692145b067843dbcc44a6dc2d9aa31"
96
96
  }