Skip to content

Commit dafdece

Browse files
feat: Update CSpell version (9.1.1) (#2349)
Co-authored-by: Jason3S <[email protected]> Co-authored-by: Jason Dent <[email protected]>
1 parent acadf5d commit dafdece

File tree

7 files changed

+5888
-3767
lines changed

7 files changed

+5888
-3767
lines changed

action-src/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
"dependencies": {
2727
"@actions/core": "^1.11.1",
2828
"@actions/github": "^6.0.1",
29-
"@cspell/cspell-bundled-dicts": "^9.0.2",
30-
"@cspell/cspell-types": "^9.0.2",
29+
"@cspell/cspell-bundled-dicts": "^9.1.1",
30+
"@cspell/cspell-types": "^9.1.1",
3131
"@octokit/webhooks-types": "^7.6.1",
3232
"@types/node": "^20.17.57",
33-
"cspell": "^9.0.2",
34-
"cspell-glob": "^9.0.2",
33+
"cspell": "^9.1.1",
34+
"cspell-glob": "^9.1.1",
3535
"vscode-uri": "^3.1.0"
3636
},
3737
"files": [

action-src/src/__snapshots__/action.test.ts.snap

Lines changed: 76 additions & 76 deletions
Large diffs are not rendered by default.

action-src/src/reporter.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ import type {
66
MessageType,
77
ProgressFileComplete,
88
ProgressItem,
9+
ReportIssueOptions,
910
RunResult,
1011
} from '@cspell/cspell-types';
1112
import * as path from 'path';
13+
import { _ } from 'vitest/dist/chunks/reporters.d.C1ogPriE.js';
1214
import { URI } from 'vscode-uri';
1315

1416
const core = { debug, info, warning, error };
@@ -63,7 +65,7 @@ export class CSpellReporterForGithubAction {
6365
this.verbose = options.verbose;
6466
}
6567

66-
_issue(issue: Issue) {
68+
_issue(issue: Issue, _options?: ReportIssueOptions) {
6769
const { issues, issueCounts } = this;
6870
const uri = issue.uri;
6971
if (uri) {

0 commit comments

Comments
 (0)