Skip to content

Commit

Permalink
Prepare wasm-wasi-lsp release
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Sep 2, 2024
1 parent a7c0cf1 commit 1e7033d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 54 deletions.
79 changes: 29 additions & 50 deletions wasm-wasi-lsp/package-lock.json

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

6 changes: 3 additions & 3 deletions wasm-wasi-lsp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vscode/wasm-wasi-lsp",
"version": "0.1.0-pre.6",
"version": "0.1.0-pre.7",
"description": "A npm package to ease implementing language servers in WebAssembly with WASI.",
"author": "Visual Studio Code Team",
"license": "MIT",
Expand Down Expand Up @@ -30,8 +30,8 @@
}
},
"peerDependencies": {
"vscode-languageclient": "10.0.0-next.7",
"@vscode/wasm-wasi": "0.13.0-pre.1"
"vscode-languageclient": "10.0.0-next.12",
"@vscode/wasm-wasi": "1.0.1"
},
"devDependencies": {
"@types/vscode": "1.89.0"
Expand Down
2 changes: 1 addition & 1 deletion wasm-wasi-lsp/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* ------------------------------------------------------------------------------------------ */
import * as vscode from 'vscode';

import { Readable, WasmProcess, Writable, type Stdio } from '@vscode/wasm-wasi';
import { Readable, WasmProcess, Writable, type Stdio } from '@vscode/wasm-wasi/v1';
import { Disposable, Emitter, Event, Message, MessageTransports, RAL, ReadableStreamMessageReader, WriteableStreamMessageWriter } from 'vscode-languageclient';

class ReadableStreamImpl implements RAL.ReadableStream {
Expand Down

0 comments on commit 1e7033d

Please sign in to comment.