cspell 5.12.3 → 5.12.4
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/commandLint.js +2 -1
- package/package.json +10 -10
package/dist/commandLint.js
CHANGED
|
@@ -51,7 +51,8 @@ function commandLint(prog) {
|
|
|
51
51
|
.option('--locale <locale>', 'Set language locales. i.e. "en,fr" for English and French, or "en-GB" for British English.')
|
|
52
52
|
.option('--language-id <language>', 'Force programming language for unknown extensions. i.e. "php" or "scala"')
|
|
53
53
|
.addOption(new commander_1.Option('--languageId <language>', 'Force programming language for unknown extensions. i.e. "php" or "scala"').hideHelp())
|
|
54
|
-
.option('--
|
|
54
|
+
.option('--words-only', 'Only output the words not found in the dictionaries.')
|
|
55
|
+
.addOption(new commander_1.Option('--wordsOnly', 'Only output the words not found in the dictionaries.').hideHelp())
|
|
55
56
|
.option('-u, --unique', 'Only output the first instance of a word not found in the dictionaries.')
|
|
56
57
|
.option('--debug', 'Output information useful for debugging cspell.json files.')
|
|
57
58
|
.option('-e, --exclude <glob>', 'Exclude files matching the glob pattern. This option can be used multiple times to add multiple globs. ', collect)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell",
|
|
3
|
-
"version": "5.12.
|
|
3
|
+
"version": "5.12.4",
|
|
4
4
|
"description": "A Spelling Checker for Code!",
|
|
5
5
|
"funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
"homepage": "https://streetsidesoftware.github.io/cspell/",
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"chalk": "^4.1.2",
|
|
73
|
-
"commander": "^8.
|
|
73
|
+
"commander": "^8.3.0",
|
|
74
74
|
"comment-json": "^4.1.1",
|
|
75
|
-
"cspell-gitignore": "^5.12.
|
|
76
|
-
"cspell-glob": "^5.12.
|
|
77
|
-
"cspell-lib": "^5.12.
|
|
75
|
+
"cspell-gitignore": "^5.12.4",
|
|
76
|
+
"cspell-glob": "^5.12.4",
|
|
77
|
+
"cspell-lib": "^5.12.4",
|
|
78
78
|
"fast-json-stable-stringify": "^2.1.0",
|
|
79
79
|
"file-entry-cache": "^6.0.1",
|
|
80
80
|
"fs-extra": "^10.0.0",
|
|
@@ -88,18 +88,18 @@
|
|
|
88
88
|
"node": ">=12.13.0"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
|
-
"@cspell/cspell-json-reporter": "^5.12.
|
|
92
|
-
"@cspell/cspell-types": "^5.12.
|
|
91
|
+
"@cspell/cspell-json-reporter": "^5.12.4",
|
|
92
|
+
"@cspell/cspell-types": "^5.12.4",
|
|
93
93
|
"@types/file-entry-cache": "^5.0.2",
|
|
94
94
|
"@types/fs-extra": "^9.0.13",
|
|
95
|
-
"@types/glob": "^7.
|
|
95
|
+
"@types/glob": "^7.2.0",
|
|
96
96
|
"@types/imurmurhash": "^0.1.1",
|
|
97
97
|
"@types/micromatch": "^4.0.2",
|
|
98
98
|
"@types/minimatch": "^3.0.5",
|
|
99
|
-
"jest": "^27.
|
|
99
|
+
"jest": "^27.3.1",
|
|
100
100
|
"micromatch": "^4.0.4",
|
|
101
101
|
"minimatch": "^3.0.4",
|
|
102
102
|
"rimraf": "^3.0.2"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "3e9973c39725f65141683b373ed839562f28bd94"
|
|
105
105
|
}
|