2023-03-26 22:39:47 +08:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
2023-04-15 18:58:40 +08:00
|
|
|
{
|
|
|
|
"label": "dev",
|
|
|
|
"type": "shell",
|
|
|
|
"isBackground": true,
|
|
|
|
"command": "pnpm",
|
|
|
|
"args": [
|
|
|
|
"tauri",
|
|
|
|
"dev"
|
|
|
|
],
|
|
|
|
"problemMatcher": [
|
|
|
|
"$eslint-stylish"
|
2023-04-16 18:17:49 +08:00
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"env": {
|
|
|
|
"RUST_LOG": "info"
|
|
|
|
}
|
|
|
|
}
|
2023-04-15 18:58:40 +08:00
|
|
|
},
|
2023-03-26 22:39:47 +08:00
|
|
|
{
|
|
|
|
"label": "ui:dev",
|
|
|
|
"type": "shell",
|
|
|
|
"isBackground": true,
|
2023-04-14 22:18:59 +08:00
|
|
|
"command": "pnpm",
|
2023-03-26 22:39:47 +08:00
|
|
|
"args": [
|
|
|
|
"dev"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "ui:build",
|
|
|
|
"type": "shell",
|
2023-04-14 22:18:59 +08:00
|
|
|
"command": "pnpm",
|
2023-03-26 22:39:47 +08:00
|
|
|
"args": [
|
|
|
|
"build"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|