cspell-lib 6.14.3 → 6.15.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.
package/dist/LanguageIds.js
CHANGED
|
@@ -96,6 +96,7 @@ exports.languageExtensionDefinitions = [
|
|
|
96
96
|
],
|
|
97
97
|
},
|
|
98
98
|
{ id: 'sql', extensions: ['.sql', '.dsql'] },
|
|
99
|
+
{ id: 'svelte', extensions: ['.svelte'] },
|
|
99
100
|
{ id: 'swift', extensions: ['.swift'] },
|
|
100
101
|
{ id: 'toml', extensions: ['.toml'] },
|
|
101
102
|
{ id: 'typescript', extensions: ['.ts', '.cts', '.mts'] },
|
|
@@ -2,7 +2,7 @@ import * as cspellDictModule from 'cspell-dictionary';
|
|
|
2
2
|
export { CompoundWordsMethod } from 'cspell-trie-lib';
|
|
3
3
|
declare const SpellingDictionaryModule: {
|
|
4
4
|
readonly createCollection: typeof cspellDictModule.createCollection;
|
|
5
|
-
readonly createForbiddenWordsDictionary: typeof cspellDictModule.
|
|
5
|
+
readonly createForbiddenWordsDictionary: typeof cspellDictModule.createFlagWordsDictionary;
|
|
6
6
|
readonly createSpellingDictionary: typeof cspellDictModule.createSpellingDictionary;
|
|
7
7
|
readonly createIgnoreWordsDictionary: typeof cspellDictModule.createIgnoreWordsDictionary;
|
|
8
8
|
readonly createSpellingDictionaryFromTrieFile: typeof cspellDictModule.createSpellingDictionaryFromTrieFile;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell-lib",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.15.1",
|
|
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,19 +48,19 @@
|
|
|
48
48
|
},
|
|
49
49
|
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@cspell/cspell-bundled-dicts": "6.
|
|
52
|
-
"@cspell/cspell-pipe": "6.
|
|
53
|
-
"@cspell/cspell-types": "6.
|
|
54
|
-
"@cspell/strong-weak-map": "6.
|
|
51
|
+
"@cspell/cspell-bundled-dicts": "6.15.1",
|
|
52
|
+
"@cspell/cspell-pipe": "6.15.1",
|
|
53
|
+
"@cspell/cspell-types": "6.15.1",
|
|
54
|
+
"@cspell/strong-weak-map": "6.15.1",
|
|
55
55
|
"clear-module": "^4.1.2",
|
|
56
56
|
"comment-json": "^4.2.3",
|
|
57
57
|
"configstore": "^5.0.1",
|
|
58
|
-
"cosmiconfig": "^
|
|
59
|
-
"cspell-dictionary": "6.
|
|
60
|
-
"cspell-glob": "6.
|
|
61
|
-
"cspell-grammar": "6.
|
|
62
|
-
"cspell-io": "6.
|
|
63
|
-
"cspell-trie-lib": "6.
|
|
58
|
+
"cosmiconfig": "^8.0.0",
|
|
59
|
+
"cspell-dictionary": "6.15.1",
|
|
60
|
+
"cspell-glob": "6.15.1",
|
|
61
|
+
"cspell-grammar": "6.15.1",
|
|
62
|
+
"cspell-io": "6.15.1",
|
|
63
|
+
"cspell-trie-lib": "6.15.1",
|
|
64
64
|
"fast-equals": "^4.0.3",
|
|
65
65
|
"find-up": "^5.0.0",
|
|
66
66
|
"fs-extra": "^10.1.0",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@cspell/dict-cpp": "^4.0.0",
|
|
79
|
-
"@cspell/dict-csharp": "^4.0.
|
|
79
|
+
"@cspell/dict-csharp": "^4.0.2",
|
|
80
80
|
"@cspell/dict-css": "^3.0.0",
|
|
81
81
|
"@cspell/dict-fa-ir": "^2.0.0",
|
|
82
82
|
"@cspell/dict-fr-fr": "^2.1.1",
|
|
@@ -91,9 +91,9 @@
|
|
|
91
91
|
"jest": "^29.3.1",
|
|
92
92
|
"lorem-ipsum": "^2.0.8",
|
|
93
93
|
"rimraf": "^3.0.2",
|
|
94
|
-
"rollup": "^3.
|
|
94
|
+
"rollup": "^3.5.0",
|
|
95
95
|
"rollup-plugin-dts": "^5.0.0",
|
|
96
96
|
"ts-jest": "^29.0.3"
|
|
97
97
|
},
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "9668bef6beeec53e1e473efc97e309baa0338de2"
|
|
99
99
|
}
|