@cspell/cspell-tools 6.21.0 → 6.22.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.
- package/README.md +12 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# CSpell-Tools
|
|
2
2
|
|
|
3
|
-
Tools used to assist
|
|
3
|
+
Tools used to assist CSpell Development.
|
|
4
4
|
|
|
5
5
|
The Primary use of this tool is to build dictionaries used by cspell. This tool will convert a word list or a hunspell file into a file usable by cspell.
|
|
6
6
|
|
|
@@ -36,6 +36,16 @@ For large files, this process can take a long time and us a lot of memory.
|
|
|
36
36
|
|
|
37
37
|
The tool `cspell-trie` can be used to read the contents of a `.trie` or `.trie.gz` file.
|
|
38
38
|
|
|
39
|
+
## CSpell for Enterprise
|
|
40
|
+
|
|
41
|
+
<!--- @@inject: ../../static/tidelift.md --->
|
|
42
|
+
|
|
43
|
+
Available as part of the Tidelift Subscription.
|
|
44
|
+
|
|
45
|
+
The maintainers of cspell and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-cspell?utm_source=npm-cspell&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
|
|
46
|
+
|
|
47
|
+
<!--- @@inject-end: ../../static/tidelift.md --->
|
|
48
|
+
|
|
39
49
|
<!--- @@inject: ../../static/footer.md --->
|
|
40
50
|
|
|
41
51
|
<br/>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/cspell-tools",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.22.0",
|
|
4
4
|
"description": "Tools to assist with the development of cSpell",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
},
|
|
49
49
|
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@cspell/cspell-pipe": "6.
|
|
51
|
+
"@cspell/cspell-pipe": "6.22.0",
|
|
52
52
|
"commander": "^10.0.0",
|
|
53
53
|
"cosmiconfig": "^8.0.0",
|
|
54
|
-
"cspell-trie-lib": "6.
|
|
54
|
+
"cspell-trie-lib": "6.22.0",
|
|
55
55
|
"gensequence": "^4.0.3",
|
|
56
56
|
"glob": "^8.1.0",
|
|
57
|
-
"hunspell-reader": "6.
|
|
57
|
+
"hunspell-reader": "6.22.0"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
60
|
"node": ">=14"
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@types/glob": "^8.0.1",
|
|
64
64
|
"@types/jest": "^29.4.0",
|
|
65
|
-
"@types/node": "^18.11.
|
|
65
|
+
"@types/node": "^18.11.19",
|
|
66
66
|
"@types/rimraf": "^3.0.2",
|
|
67
67
|
"@types/shelljs": "^0.8.11",
|
|
68
68
|
"jest": "^29.4.1",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"ts-json-schema-generator": "^1.2.0"
|
|
72
72
|
},
|
|
73
73
|
"main": "bin.js",
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "a133874ed7590cbe140f5067cfa80db84b644a5d"
|
|
75
75
|
}
|