Skip to content

Commit b15fb9b

Browse files
committed
🔧 VSCode tasks addition
1 parent edd6033 commit b15fb9b

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.vscode/launch.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8+
"preLaunchTask": "install",
89
"command": "yarn run start:host",
910
"name": "Launch [Development]",
1011
"request": "launch",
1112
"type": "node-terminal"
1213
},
1314
{
15+
"preLaunchTask": "install",
1416
"command": "yarn run build && yarn run serve",
1517
"name": "Launch [Production]",
1618
"request": "launch",

.vscode/tasks.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "install",
7+
"group": "build",
8+
"label": "install",
9+
"detail": "install dependencies from package"
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)