cspell 8.6.0 → 8.7.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.
|
@@ -42,7 +42,7 @@ export declare class DiskCache implements CSpellLintResultCache {
|
|
|
42
42
|
readonly version: string;
|
|
43
43
|
constructor(cacheFileLocation: string, useCheckSum: boolean, cspellVersion: string, useUniversalCache: boolean);
|
|
44
44
|
getCachedLintResults(filename: string): Promise<FileResult | undefined>;
|
|
45
|
-
setCachedLintResults({ fileInfo, elapsedTimeMs, cached, ...result }: FileResult, dependsUponFiles: string[]): void;
|
|
45
|
+
setCachedLintResults({ fileInfo, elapsedTimeMs: _, cached: __, ...result }: FileResult, dependsUponFiles: string[]): void;
|
|
46
46
|
reconcile(): void;
|
|
47
47
|
reset(): void;
|
|
48
48
|
private normalizeResult;
|
|
@@ -42,7 +42,7 @@ export declare class DiskCache implements CSpellLintResultCache {
|
|
|
42
42
|
readonly version: string;
|
|
43
43
|
constructor(cacheFileLocation: string, useCheckSum: boolean, cspellVersion: string, useUniversalCache: boolean);
|
|
44
44
|
getCachedLintResults(filename: string): Promise<FileResult | undefined>;
|
|
45
|
-
setCachedLintResults({ fileInfo, elapsedTimeMs, cached, ...result }: FileResult, dependsUponFiles: string[]): void;
|
|
45
|
+
setCachedLintResults({ fileInfo, elapsedTimeMs: _, cached: __, ...result }: FileResult, dependsUponFiles: string[]): void;
|
|
46
46
|
reconcile(): void;
|
|
47
47
|
reset(): void;
|
|
48
48
|
private normalizeResult;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0",
|
|
4
4
|
"description": "A Spelling Checker for Code!",
|
|
5
5
|
"funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
|
|
6
6
|
"bin": {
|
|
@@ -61,7 +61,8 @@
|
|
|
61
61
|
},
|
|
62
62
|
"repository": {
|
|
63
63
|
"type": "git",
|
|
64
|
-
"url": "
|
|
64
|
+
"url": "https://github.com/streetsidesoftware/cspell.git",
|
|
65
|
+
"directory": "packages/cspell"
|
|
65
66
|
},
|
|
66
67
|
"keywords": [
|
|
67
68
|
"spell",
|
|
@@ -81,17 +82,17 @@
|
|
|
81
82
|
},
|
|
82
83
|
"homepage": "https://streetsidesoftware.github.io/cspell/",
|
|
83
84
|
"dependencies": {
|
|
84
|
-
"@cspell/cspell-json-reporter": "8.
|
|
85
|
-
"@cspell/cspell-pipe": "8.
|
|
86
|
-
"@cspell/cspell-types": "8.
|
|
87
|
-
"@cspell/dynamic-import": "8.
|
|
85
|
+
"@cspell/cspell-json-reporter": "8.7.0",
|
|
86
|
+
"@cspell/cspell-pipe": "8.7.0",
|
|
87
|
+
"@cspell/cspell-types": "8.7.0",
|
|
88
|
+
"@cspell/dynamic-import": "8.7.0",
|
|
88
89
|
"chalk": "^5.3.0",
|
|
89
90
|
"chalk-template": "^1.1.0",
|
|
90
91
|
"commander": "^12.0.0",
|
|
91
|
-
"cspell-gitignore": "8.
|
|
92
|
-
"cspell-glob": "8.
|
|
93
|
-
"cspell-io": "8.
|
|
94
|
-
"cspell-lib": "8.
|
|
92
|
+
"cspell-gitignore": "8.7.0",
|
|
93
|
+
"cspell-glob": "8.7.0",
|
|
94
|
+
"cspell-io": "8.7.0",
|
|
95
|
+
"cspell-lib": "8.7.0",
|
|
95
96
|
"fast-glob": "^3.3.2",
|
|
96
97
|
"fast-json-stable-stringify": "^2.1.0",
|
|
97
98
|
"file-entry-cache": "^8.0.0",
|
|
@@ -109,7 +110,7 @@
|
|
|
109
110
|
"@types/micromatch": "^4.0.6",
|
|
110
111
|
"@types/semver": "^7.5.8",
|
|
111
112
|
"micromatch": "^4.0.5",
|
|
112
|
-
"minimatch": "^9.0.
|
|
113
|
+
"minimatch": "^9.0.4"
|
|
113
114
|
},
|
|
114
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "5318079ed11fe77e981287ecf1c40d6f28dd91ed"
|
|
115
116
|
}
|