Skip to content

Commit

Permalink
fix: Update VSCode to (^1.88.0) (main) (#280)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason3S <3740137+Jason3S@users.noreply.github.com>
Co-authored-by: Jason Dent <jason@streetsidesoftware.nl>
  • Loading branch information
3 people authored Apr 6, 2024
1 parent 9fa9c7e commit c11c6a8
Show file tree
Hide file tree
Showing 3 changed files with 179 additions and 63 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@jest/globals": "^29.7.0",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.19.26",
"@types/vscode": "^1.87.0",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
Expand Down
116 changes: 113 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 65 additions & 59 deletions src/vscode-mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,83 +92,89 @@ import { createTasks } from './vscode/tasks';
type VSCode = typeof vscode;

type NotImplemented =
| 'authentication'
| 'BranchCoverage'
| 'Breakpoint'
| 'CancellationError'
| 'CancellationTokenSource'
| 'CodeActionTriggerKind'
| 'comments'
| 'CommentThreadState'
| 'CustomExecution'
| 'DataTransfer'
| 'DataTransferItem'
| 'DebugAdapterExecutable'
| 'DebugAdapterNamedPipeServer'
| 'DebugAdapterServer'
| 'DeclarationCoverage'
| 'DocumentDropEdit'
| 'env'
| 'extensions'
| 'FileCoverage'
| 'FileDecoration'
| 'FunctionBreakpoint'
| 'Hover'
| 'IndentAction'
| 'InlayHint'
| 'InlayHintKind'
| 'InlayHintLabelPart'
| 'InlineCompletionItem'
| 'InlineCompletionList'
| 'InlineCompletionTriggerKind'
| 'InlineValueEvaluatableExpression'
| 'InlineValueText'
| 'InlineValueVariableLookup'
| 'InputBoxValidationSeverity'
| 'QuickPickItemKind'
| 'RelativePattern'
| 'InlineValueEvaluatableExpression'
| 'SnippetTextEdit'
| 'NotebookEdit'
| 'SemanticTokensBuilder'
| 'ParameterInformation'
| 'SignatureInformation'
| 'SignatureHelp'
| 'InlineCompletionList'
| 'InlineCompletionTriggerKind'
| 'InlineCompletionItem'
| 'InlayHintKind'
| 'InlayHintLabelPart'
| 'InlayHint'
| 'LinkedEditingRanges'
| 'DocumentDropEdit'
| 'IndentAction'
| 'l10n'
| 'LanguageStatusSeverity'
| 'TerminalLocation'
| 'TerminalLink'
| 'TerminalProfile'
| 'FileDecoration'
| 'ShellExecution'
| 'CustomExecution'
| 'Task'
| 'UIKind'
| 'env'
| 'ProcessExecution'
| 'DataTransferItem'
| 'DataTransfer'
| 'QuickInputButtons'
| 'TextDocumentChangeReason'
| 'TreeItemCheckboxState'
| 'TerminalExitReason'
| 'LinkedEditingRanges'
| 'NotebookCellData'
| 'NotebookCellKind'
| 'NotebookRange'
| 'NotebookCellOutputItem'
| 'NotebookCellOutput'
| 'NotebookCellData'
| 'NotebookData'
| 'NotebookControllerAffinity'
| 'NotebookCellOutputItem'
| 'NotebookCellStatusBarItem'
| 'NotebookControllerAffinity'
| 'NotebookData'
| 'NotebookEdit'
| 'NotebookRange'
| 'notebooks'
| 'ParameterInformation'
| 'ProcessExecution'
| 'QuickInputButtons'
| 'QuickPickItemKind'
| 'RelativePattern'
| 'scm'
| 'DebugAdapterExecutable'
| 'DebugAdapterServer'
| 'DebugAdapterNamedPipeServer'
| 'Breakpoint'
| 'SemanticTokensBuilder'
| 'ShellExecution'
| 'SignatureHelp'
| 'SignatureInformation'
| 'SnippetTextEdit'
| 'SourceBreakpoint'
| 'FunctionBreakpoint'
| 'extensions'
| 'CommentThreadState'
| 'comments'
| 'authentication'
| 'l10n'
| 'tests'
| 'TestRunProfileKind'
| 'TestTag'
| 'TestRunRequest'
| 'TextEditorCursorStyle'
| 'TestMessage'
| 'TabInputText'
| 'TabInputTextDiff'
| 'StatementCoverage'
| 'TabInputCustom'
| 'TabInputWebview'
| 'TabInputNotebook'
| 'TabInputNotebookDiff'
| 'TabInputTerminal'
| 'TelemetryTrustedValue';
| 'TabInputText'
| 'TabInputTextDiff'
| 'TabInputWebview'
| 'Task'
| 'TelemetryTrustedValue'
| 'TerminalExitReason'
| 'TerminalLink'
| 'TerminalLocation'
| 'TerminalProfile'
| 'TestCoverage'
| 'TestCoverageCount'
| 'TestMessage'
| 'TestRunProfileKind'
| 'TestRunRequest'
| 'tests'
| 'TestTag'
| 'TextDocumentChangeReason'
| 'TextEditorCursorStyle'
| 'TreeItemCheckboxState'
| 'UIKind';

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

Expand Down

0 comments on commit c11c6a8

Please sign in to comment.