File tree 1 file changed +19
-6
lines changed
1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -23,28 +23,41 @@ Follow the instructions in the server documentation - [How to run the Language S
23
23
24
24
* Clone this repository
25
25
26
- ```
26
+ ``` bash
27
27
> git clone https://github.com/jpogran/puppet-vscode.git
28
28
29
29
> cd puppet-vscode
30
30
> cd client
31
31
```
32
32
33
- * Install the node modules and start VS Code
33
+ * Install the node modules
34
34
35
- ```
36
- > npm install
35
+ ``` bash
36
+ client > npm install
37
37
...
38
38
39
39
> puppet-vscode@0.0.3 postinstall C:\S ource\p uppet-vscode\c lient
40
40
> node ./node_modules/vscode/bin/install
41
-
41
+ ...
42
42
Detected VS Code engine version: ^1.10.0
43
43
Found minimal version that qualifies engine range: 1.10.0
44
44
Fetching vscode.d.ts from: https://raw.githubusercontent.com/Microsoft/vscode/1.10.0/src/vs/vscode.d.ts
45
45
vscode.d.ts successfully installed!
46
+ ```
47
+
48
+ * Copy the Language Server for vendoring into the extensions
49
+
50
+ ``` bash
51
+ client > node node_modules/gulp/bin/gulp.js copy_language_server
52
+ [15:13:02] Using gulpfile client/gulpfile.js
53
+ [15:13:02] Starting ' copy_language_server' ...
54
+ [15:13:02] Finished ' copy_language_server' after 193 ms
55
+ ```
56
+
57
+ * Start VS Code
46
58
47
- > code .
59
+ ``` bash
60
+ client > code .
48
61
```
49
62
50
63
* Once VS Code is running, press ` F5 ` to start a build and a new VS Code development instance should start
You can’t perform that action at this time.
0 commit comments