Skip to content

Commit

Permalink
chore: bump js deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Desdaemon committed Aug 24, 2023
1 parent 867e2c1 commit 30055a3
Show file tree
Hide file tree
Showing 6 changed files with 318 additions and 28 deletions.
3 changes: 2 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ examples
.*
.github
Cargo.*
pnpm-lock.yaml
pnpm-lock.yaml
*.vsix
31 changes: 15 additions & 16 deletions client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,35 @@
* ------------------------------------------------------------------------------------------ */

import {
languages,
// languages,
workspace,
window,
commands,
EventEmitter,
ExtensionContext,
window,
InlayHintsProvider,
TextDocument,
CancellationToken,
// InlayHintsProvider,
// TextDocument,
// CancellationToken,
Range,
InlayHint,
// InlayHint,
TextDocumentChangeEvent,
ProviderResult,
commands,
WorkspaceEdit,
TextEdit,
// ProviderResult,
// WorkspaceEdit,
// TextEdit,
Selection,
Uri,
} from "vscode";

import {
CloseAction,
CloseHandlerResult,
// CloseAction,
// CloseHandlerResult,
Disposable,
ErrorAction,
ErrorHandlerResult,
// ErrorAction,
// ErrorHandlerResult,
Executable,
LanguageClient,
LanguageClientOptions,
MessageStrategy,
// MessageStrategy,
ServerOptions,
} from "vscode-languageclient/node";

Expand Down Expand Up @@ -89,7 +89,6 @@ export async function activate(context: ExtensionContext) {
traceOutputChannel,
};

// Create the language client and start the client.
client = new LanguageClient("odoo-lsp", "Odoo LSP", serverOptions, clientOptions);
// activateInlayHints(context);
await client.start();
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,11 @@
"glob": "^7.2.3",
"mocha": "^8.4.0",
"prettier": "^3.0.2",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"vscode-uri": "^3.0.7",
"webpack": "^5.88.2"
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"vscode-languageclient": "^8.1.0"
Expand Down
Loading

0 comments on commit 30055a3

Please sign in to comment.