Skip to content

Commit f5071cb

Browse files
authored
Create tasks.json
1 parent ee8f718 commit f5071cb

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.theia/tasks.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "npm-install-on-start",
6+
"type": "shell",
7+
"command": "npm",
8+
"args": ["install", "--include=dev"],
9+
"group": "build",
10+
"presentation": {
11+
"echo": true,
12+
"reveal": "always",
13+
"focus": false,
14+
"panel": "new",
15+
"showReuseMessage": false
16+
},
17+
"runOptions": {
18+
"runOn": "folderOpen"
19+
},
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)