You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README-dev.md
+19-2Lines changed: 19 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,6 @@ This file contains information that could be interesting to developers, that wan
4
4
5
5
For general information, see the main [README.md](README.md)
6
6
7
-
8
7
* This is a TypeScript extension, officially named `vscode-trace-server`.
9
8
* It is meant as companion to the [vscode-trace-extension][vscode-trace-extension].
10
9
* It registers `Trace Server:` start/stop commands, for a default instance locally.
@@ -22,7 +21,25 @@ This README is the usual entry point for documenting this extension.
22
21
23
22
## Build
24
23
25
-
Run `yarn`, which should automatically include `yarn install`.
24
+
First, you need Node.js and yarn:
25
+
26
+
It's suggested to install [nvm](https://github.com/nvm-sh/nvm#installing-and-updating) to manage node on your machine. Once that's done, install the required version:
27
+
28
+
```bash
29
+
nvm install 18
30
+
# optional: make it the default version
31
+
nvm alias default
32
+
# or set it every time like so
33
+
nvm use 18
34
+
```
35
+
36
+
Then install `yarn`:
37
+
38
+
```bash
39
+
npm i -g yarn # the default version should be ok
40
+
```
41
+
42
+
To build, run `yarn`, which should automatically trigger `yarn install`.
26
43
27
44
* This extension is bundled using `webpack`, originally based on [the guide][guide].
28
45
* There is only a modest automated CI test suite being run on GitHub
0 commit comments