@vscode/tree-sitter-wasm 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/package.json +10 -1
- package/wasm/tree-sitter-c-sharp.wasm +0 -0
- package/wasm/tree-sitter-cpp.wasm +0 -0
- package/wasm/tree-sitter-go.wasm +0 -0
- package/wasm/tree-sitter-java.wasm +0 -0
- package/wasm/tree-sitter-javascript.wasm +0 -0
- package/wasm/tree-sitter-python.wasm +0 -0
- package/wasm/tree-sitter-regex.wasm +0 -0
- package/wasm/tree-sitter-ruby.wasm +0 -0
- package/wasm/tree-sitter-rust.wasm +0 -0
- package/wasm/tree-sitter-tsx.wasm +0 -0
package/README.md
CHANGED
@@ -18,7 +18,7 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio
|
|
18
18
|
|
19
19
|
### Build steps
|
20
20
|
|
21
|
-
> Note: If you're using Windows, you'll need to use WSL.
|
21
|
+
> Note: If you're using Windows, you'll need to use WSL. Ensure Docker integration for WSL is enabled before attempting to build. Without this integration, the build process may encounter errors.
|
22
22
|
|
23
23
|
First, install all of the dependencies using `npm install`. You will also need to install [emscripten](https://emscripten.org/docs/getting_started/downloads.html).
|
24
24
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vscode/tree-sitter-wasm",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.5",
|
4
4
|
"description": "Pre-built WASM files for Tree-Sitter and Tree-Sitter languages that VS Code uses",
|
5
5
|
"scripts": {
|
6
6
|
"build-wasm": "ts-node ./build/main.ts",
|
@@ -19,7 +19,16 @@
|
|
19
19
|
"types": "wasm/tree-sitter-web.d.ts",
|
20
20
|
"devDependencies": {
|
21
21
|
"@types/node": "^20.14.6",
|
22
|
+
"tree-sitter-c-sharp": "^0.23.0",
|
22
23
|
"tree-sitter-cli": "^0.23.0",
|
24
|
+
"tree-sitter-cpp": "^0.23.1",
|
25
|
+
"tree-sitter-go": "^0.23.1",
|
26
|
+
"tree-sitter-java": "^0.23.2",
|
27
|
+
"tree-sitter-javascript": "^0.23.0",
|
28
|
+
"tree-sitter-python": "^0.23.2",
|
29
|
+
"tree-sitter-regex": "^0.23.0",
|
30
|
+
"tree-sitter-ruby": "^0.23.0",
|
31
|
+
"tree-sitter-rust": "^0.23.0",
|
23
32
|
"tree-sitter-typescript": "^0.23.0",
|
24
33
|
"ts-node": "^10.9.2"
|
25
34
|
},
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|