mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
47 lines
No EOL
644 B
JSON
47 lines
No EOL
644 B
JSON
{
|
|
"version": "2.0.0",
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"tasks": [
|
|
{
|
|
"label": "Run",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"command": "cargo",
|
|
"args": [
|
|
"run",
|
|
"--",
|
|
"-c",
|
|
"./TestConfigWindows.toml",
|
|
"-d",
|
|
"test/db.sqlite",
|
|
"-w",
|
|
"../polaris-web"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"group": "test",
|
|
"label": "Test",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"command": "cargo",
|
|
"args": [
|
|
"test"
|
|
]
|
|
},
|
|
{
|
|
"label": "Compile",
|
|
"options": {
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
"command": "cargo",
|
|
"args": [
|
|
"check"
|
|
]
|
|
}
|
|
]
|
|
} |