Skip to content

Commit c11c6a8

Browse files
fix: Update VSCode to (^1.88.0) (main) (#280)
Co-authored-by: Jason3S <3740137+Jason3S@users.noreply.github.com> Co-authored-by: Jason Dent <jason@streetsidesoftware.nl>
1 parent 9fa9c7e commit c11c6a8

File tree

3 files changed

+179
-63
lines changed

3 files changed

+179
-63
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"@jest/globals": "^29.7.0",
5252
"@tsconfig/node18": "^18.2.2",
5353
"@types/node": "^18.19.26",
54-
"@types/vscode": "^1.87.0",
54+
"@types/vscode": "^1.88.0",
5555
"@typescript-eslint/eslint-plugin": "^7.3.1",
5656
"@typescript-eslint/parser": "^7.3.1",
5757
"eslint": "^8.57.0",

pnpm-lock.yaml

+113-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/vscode-mock.ts

+65-59
Original file line numberDiff line numberDiff line change
@@ -92,83 +92,89 @@ import { createTasks } from './vscode/tasks';
9292
type VSCode = typeof vscode;
9393

9494
type NotImplemented =
95+
| 'authentication'
96+
| 'BranchCoverage'
97+
| 'Breakpoint'
9598
| 'CancellationError'
9699
| 'CancellationTokenSource'
97100
| 'CodeActionTriggerKind'
101+
| 'comments'
102+
| 'CommentThreadState'
103+
| 'CustomExecution'
104+
| 'DataTransfer'
105+
| 'DataTransferItem'
106+
| 'DebugAdapterExecutable'
107+
| 'DebugAdapterNamedPipeServer'
108+
| 'DebugAdapterServer'
109+
| 'DeclarationCoverage'
110+
| 'DocumentDropEdit'
111+
| 'env'
112+
| 'extensions'
113+
| 'FileCoverage'
114+
| 'FileDecoration'
115+
| 'FunctionBreakpoint'
98116
| 'Hover'
117+
| 'IndentAction'
118+
| 'InlayHint'
119+
| 'InlayHintKind'
120+
| 'InlayHintLabelPart'
121+
| 'InlineCompletionItem'
122+
| 'InlineCompletionList'
123+
| 'InlineCompletionTriggerKind'
124+
| 'InlineValueEvaluatableExpression'
99125
| 'InlineValueText'
100126
| 'InlineValueVariableLookup'
101127
| 'InputBoxValidationSeverity'
102-
| 'QuickPickItemKind'
103-
| 'RelativePattern'
104-
| 'InlineValueEvaluatableExpression'
105-
| 'SnippetTextEdit'
106-
| 'NotebookEdit'
107-
| 'SemanticTokensBuilder'
108-
| 'ParameterInformation'
109-
| 'SignatureInformation'
110-
| 'SignatureHelp'
111-
| 'InlineCompletionList'
112-
| 'InlineCompletionTriggerKind'
113-
| 'InlineCompletionItem'
114-
| 'InlayHintKind'
115-
| 'InlayHintLabelPart'
116-
| 'InlayHint'
117-
| 'LinkedEditingRanges'
118-
| 'DocumentDropEdit'
119-
| 'IndentAction'
128+
| 'l10n'
120129
| 'LanguageStatusSeverity'
121-
| 'TerminalLocation'
122-
| 'TerminalLink'
123-
| 'TerminalProfile'
124-
| 'FileDecoration'
125-
| 'ShellExecution'
126-
| 'CustomExecution'
127-
| 'Task'
128-
| 'UIKind'
129-
| 'env'
130-
| 'ProcessExecution'
131-
| 'DataTransferItem'
132-
| 'DataTransfer'
133-
| 'QuickInputButtons'
134-
| 'TextDocumentChangeReason'
135-
| 'TreeItemCheckboxState'
136-
| 'TerminalExitReason'
130+
| 'LinkedEditingRanges'
131+
| 'NotebookCellData'
137132
| 'NotebookCellKind'
138-
| 'NotebookRange'
139-
| 'NotebookCellOutputItem'
140133
| 'NotebookCellOutput'
141-
| 'NotebookCellData'
142-
| 'NotebookData'
143-
| 'NotebookControllerAffinity'
134+
| 'NotebookCellOutputItem'
144135
| 'NotebookCellStatusBarItem'
136+
| 'NotebookControllerAffinity'
137+
| 'NotebookData'
138+
| 'NotebookEdit'
139+
| 'NotebookRange'
145140
| 'notebooks'
141+
| 'ParameterInformation'
142+
| 'ProcessExecution'
143+
| 'QuickInputButtons'
144+
| 'QuickPickItemKind'
145+
| 'RelativePattern'
146146
| 'scm'
147-
| 'DebugAdapterExecutable'
148-
| 'DebugAdapterServer'
149-
| 'DebugAdapterNamedPipeServer'
150-
| 'Breakpoint'
147+
| 'SemanticTokensBuilder'
148+
| 'ShellExecution'
149+
| 'SignatureHelp'
150+
| 'SignatureInformation'
151+
| 'SnippetTextEdit'
151152
| 'SourceBreakpoint'
152-
| 'FunctionBreakpoint'
153-
| 'extensions'
154-
| 'CommentThreadState'
155-
| 'comments'
156-
| 'authentication'
157-
| 'l10n'
158-
| 'tests'
159-
| 'TestRunProfileKind'
160-
| 'TestTag'
161-
| 'TestRunRequest'
162-
| 'TextEditorCursorStyle'
163-
| 'TestMessage'
164-
| 'TabInputText'
165-
| 'TabInputTextDiff'
153+
| 'StatementCoverage'
166154
| 'TabInputCustom'
167-
| 'TabInputWebview'
168155
| 'TabInputNotebook'
169156
| 'TabInputNotebookDiff'
170157
| 'TabInputTerminal'
171-
| 'TelemetryTrustedValue';
158+
| 'TabInputText'
159+
| 'TabInputTextDiff'
160+
| 'TabInputWebview'
161+
| 'Task'
162+
| 'TelemetryTrustedValue'
163+
| 'TerminalExitReason'
164+
| 'TerminalLink'
165+
| 'TerminalLocation'
166+
| 'TerminalProfile'
167+
| 'TestCoverage'
168+
| 'TestCoverageCount'
169+
| 'TestMessage'
170+
| 'TestRunProfileKind'
171+
| 'TestRunRequest'
172+
| 'tests'
173+
| 'TestTag'
174+
| 'TextDocumentChangeReason'
175+
| 'TextEditorCursorStyle'
176+
| 'TreeItemCheckboxState'
177+
| 'UIKind';
172178

173179
export interface VSCodeMock extends Omit<VSCode, NotImplemented> {}
174180

0 commit comments

Comments
 (0)