Skip to content

Commit 03bd296

Browse files
authored
docs(readme): update build script for vscode-js-debug
1 parent baff224 commit 03bd296

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You must download and build a copy of [vscode-js-debug](https://github.com/micro
3434
use {
3535
"microsoft/vscode-js-debug",
3636
opt = true,
37-
run = "npm install --legacy-peer-deps && npm run compile"
37+
run = "npm install --legacy-peer-deps && npx gulp vsDebugServerBundle && mv dist out"
3838
}
3939
```
4040

@@ -44,9 +44,12 @@ use {
4444
git clone https://github.com/microsoft/vscode-js-debug
4545
cd vscode-js-debug
4646
npm install --legacy-peer-deps
47-
npm run compile
47+
npx gulp vsDebugServerBundle
48+
mv dist out
4849
```
4950

51+
> **Note**: The upstream build process has changed sometime since the creation of this repo. If the above scripts don't work, please make sure you're using the latest version of `vscode-js-debug`. Otherwise, feel free to file an issue!
52+
5053
## Setup
5154

5255
```lua

0 commit comments

Comments
 (0)