ziemniak/.vscode/tasks.json

32 lines
957 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": [
{
"label": "ui:dev",
"type": "shell",
// `dev` keeps running in the background
// ideally you should also configure a `problemMatcher`
// see https://code.visualstudio.com/docs/editor/tasks#_can-a-background-task-be-used-as-a-prelaunchtask-in-launchjson
"isBackground": true,
// change this to your `beforeDevCommand`:
"command": "npm",
"args": ["run", "dev"]
},
{
"label": "ui:build",
"type": "shell",
// change this to your `beforeBuildCommand`:
"command": "npm",
"args": ["run", "build"],
2022-07-26 05:48:06 +02:00
},
{
"label": "full:dev",
"type": "shell",
"isBackground": true,
"command": "cargo",
"args": ["tauri", "dev"]
2022-07-26 05:03:28 +02:00
}
]
}