@magic5644/graph-it-live 1.9.3 → 1.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/astWorker.js +1 -1
- package/dist/graph-it.js +290 -283
- package/dist/indexerWorker.js +1 -1
- package/dist/mcpWorker.js +70 -70
- package/dist/wasm/tree-sitter.wasm +0 -0
- package/docs/CLI.md +2 -0
- package/package.json +15 -13
package/README.md
CHANGED
|
@@ -299,7 +299,7 @@ Smart filter to show only dependencies that are actually used in your code. Togg
|
|
|
299
299
|
|
|
300
300
|
## Prerequisites
|
|
301
301
|
|
|
302
|
-
- **Node.js**:
|
|
302
|
+
- **Node.js**: v22 or higher
|
|
303
303
|
- **VS Code**: v1.96.0 or higher
|
|
304
304
|
|
|
305
305
|
**No build tools required** — the extension uses WebAssembly (WASM) parsers. No Python, C++ compiler, or native compilation needed.
|
|
@@ -719,6 +719,7 @@ For comprehensive development instructions, see:
|
|
|
719
719
|
```bash
|
|
720
720
|
git clone https://github.com/magic5644/Graph-It-Live.git
|
|
721
721
|
cd Graph-It-Live
|
|
722
|
+
nvm use # optional, uses Node.js 22 when nvm is installed
|
|
722
723
|
npm install
|
|
723
724
|
npm run build
|
|
724
725
|
# Press F5 in VS Code to launch the Extension Development Host
|