ziemniak/.vscode/tasks.json

41 lines
867 B
JSON
Raw Permalink Normal View History

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