Files
ziemniak/.vscode/tasks.json

46 lines
905 B
JSON
Raw Normal View History

2022-07-26 05:03:28 +02:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
2022-07-26 23:36:24 +02:00
{
"label": "tauri:dev",
"type": "shell",
"command": "cargo",
"problemMatcher": [],
"args": [
"tauri",
"dev"
],
"icon": {
"id": "run"
},
},
2022-07-26 05:03:28 +02:00
{
"label": "ui:dev",
"type": "shell",
"isBackground": true,
"command": "npm",
2022-07-26 23:36:24 +02:00
"problemMatcher": [],
"args": [
"run",
"dev",
"--",
"--clearScreen",
"false"
]
2022-07-26 05:03:28 +02:00
},
{
"label": "ui:build",
2022-07-26 23:36:24 +02:00
"group": "build",
2022-07-26 05:03:28 +02:00
"type": "shell",
"command": "npm",
2022-07-26 23:36:24 +02:00
"problemMatcher": [],
"args": [
"run",
"build"
]
2022-07-26 05:03:28 +02:00
}
2022-07-26 23:36:24 +02:00
],
}