Updated launch tasks for auto installation

This commit is contained in:
Davide Passoni
2024-05-28 10:20:50 +02:00
parent 3e465509e9
commit 0c93b950c6
2 changed files with 26 additions and 5 deletions

View File

@@ -1,13 +1,36 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "check-setup",
"type": "shell",
"command": "cd .. ; ./check_setup.bat",
"isBackground": false
},
{
"type": "npm",
"script": "dev",
"problemMatcher": [],
"problemMatcher": [
{
"pattern": [
{
"regexp": ".*",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": ".*",
}
}
],
"label": "npm: dev",
"detail": "vite --port=8080",
"isBackground": true
"isBackground": true,
"dependsOn": ["check-setup"]
}
]
}

View File

@@ -1,8 +1,6 @@
cd website
cd react
call npm install
call npm install -g watchify babelify tsify
call npm run build-debug
cd ..