File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ spec:
146
146
# ## END Contributions from Theia plugin ###
147
147
148
148
commands :
149
- - id : say hello
149
+ - id : say- hello
150
150
exec :
151
151
component : plugin
152
152
commandLine : echo "Hello from $(pwd)"
Original file line number Diff line number Diff line change @@ -224,29 +224,29 @@ spec:
224
224
component : vsx-installer
225
225
226
226
# User commands
227
- - id : download dependencies
227
+ - id : download- dependencies
228
228
exec :
229
229
component : nodejs
230
230
commandLine : npm install
231
231
workingDir : ${PROJECTS_ROOT}/project/app
232
- - id : run the app
232
+ - id : run- the- app
233
233
exec :
234
234
component : nodejs
235
235
commandLine : nodemon app.js
236
236
workingDir : ${PROJECTS_ROOT}/project/app
237
- - id : run the app (debugging enabled)
237
+ - id : run- the- app- (debugging- enabled)
238
238
exec :
239
239
component : nodejs
240
240
commandLine : nodemon --inspect app.js
241
241
workingDir : ${PROJECTS_ROOT}/project/app
242
- - id : stop the app
242
+ - id : stop- the- app
243
243
exec :
244
244
component : nodejs
245
245
commandLine : >-
246
246
node_server_pids=$(pgrep -fx '.*nodemon (--inspect )?app.js' | tr "\\n" " ") &&
247
247
echo "Stopping node server with PIDs: ${node_server_pids}" &&
248
248
kill -15 ${node_server_pids} &>/dev/null && echo 'Done.'
249
- - id : Attach remote debugger
249
+ - id : attach- remote- debugger
250
250
vscodeLaunch :
251
251
inlined : |
252
252
{
Original file line number Diff line number Diff line change 18
18
plugin :
19
19
id : eclipse/che-machine-exec-plugin/nightly
20
20
commands :
21
- - id : say hello
21
+ - id : say- hello
22
22
exec :
23
23
component : plugin
24
24
commandLine : echo "Hello from $(pwd)"
Original file line number Diff line number Diff line change @@ -33,29 +33,29 @@ spec:
33
33
mountSources : true
34
34
commands :
35
35
- exec :
36
- id : download dependencies
36
+ id : download- dependencies
37
37
component : nodejs
38
38
commandLine : npm install
39
39
workingDir : ${PROJECTS_ROOT}/project/app
40
40
- exec :
41
- id : run the app
41
+ id : run- the- app
42
42
component : nodejs
43
43
commandLine : nodemon app.js
44
44
workingDir : ${PROJECTS_ROOT}/project/app
45
45
- exec :
46
- id : run the app (debugging enabled)
46
+ id : run- the- app- (debugging- enabled)
47
47
component : nodejs
48
48
commandLine : nodemon --inspect app.js
49
49
workingDir : ${PROJECTS_ROOT}/project/app
50
50
- exec :
51
- id : stop the app
51
+ id : stop- the- app
52
52
component : nodejs
53
53
commandLine : >-
54
54
node_server_pids=$(pgrep -fx '.*nodemon (--inspect )?app.js' | tr "\\n" " ") &&
55
55
echo "Stopping node server with PIDs: ${node_server_pids}" &&
56
56
kill -15 ${node_server_pids} &>/dev/null && echo 'Done.'
57
57
- vscodeLaunch :
58
- id : Attach remote debugger
58
+ id : Attach- remote- debugger
59
59
inlined : |
60
60
{
61
61
"version": "0.2.0",
You can’t perform that action at this time.
0 commit comments